Search found 70 matches

by realsol
Wed Mar 15, 2017 7:21 pm
Forum: FMX
Topic: Legend, show Series Name and Series Total Value
Replies: 5
Views: 19474

Legend, show Series Name and Series Total Value

I have attached my chart. How can I change the legend to show the Series Name along with the Total value of the Series?
by realsol
Wed Mar 15, 2017 6:55 pm
Forum: FMX
Topic: A chart with 3 series?
Replies: 7
Views: 17220

Re: A chart with 3 series?

Thanks much.
by realsol
Tue Mar 14, 2017 4:44 pm
Forum: FMX
Topic: A chart with 3 series?
Replies: 7
Views: 17220

Re: A chart with 3 series?

Thank you for this. Right now I am still trying to code the correct query to get the charts filled. I was hoping to use one query for both charts, but that didn't seem possible due to the grouping of the queries. I am currently using 2 charts on a Tabsheet. I was hoping I could position the two char...
by realsol
Mon Mar 13, 2017 4:19 pm
Forum: FMX
Topic: A chart with 3 series?
Replies: 7
Views: 17220

A chart with 3 series?

I don't know how I can create this, but I need a chart that looks like the attachment. The top would be a bar chart with 2 series. One for income and on for Expenses by month of the year. I am building it from a SQL query when goes something like this: SELECT *, ABS(SUM (AMOUNT)) AS ABSTOTAL, SUM (A...
by realsol
Thu Mar 09, 2017 7:06 pm
Forum: FMX
Topic: How to get the text of a Legend item
Replies: 1
Views: 7569

How to get the text of a Legend item

I searched but couldn't find this anywhere. Right now, I have created drill-down charts when a user clicks on a slice in a pie chart by adjusting the SQL. Getting the text was easy. Series.Labels[ValueIndex] But OnClickLegend does not return a ValueIndex. I want to drill-down the same way in the leg...
by realsol
Thu Mar 09, 2017 7:55 am
Forum: VCL
Topic: Incorrect legend (pie chart) if group slice is active
Replies: 9
Views: 17198

Re: Incorrect legend (pie chart) if group slice is active

As you say, you can always go to the previous v2016.18, by uninstalling v2016.19 and installing v2016.18 (and verifying the paths)
I am running Delphi Berlin 1.1 Update 2. Does v2016.18 support this version? Also, do you have a revision page that shows the difference between the two versions?
by realsol
Sun Mar 05, 2017 3:56 am
Forum: VCL
Topic: Incorrect legend (pie chart) if group slice is active
Replies: 9
Views: 17198

Re: Incorrect legend (pie chart) if group slice is active

Couldn't see how to edit my last post, but I did want to mention that I am using the FMX version of TeeChart. I didn't notice this was the VCL forum when I replied. Found this post by Googling it. I assume the error I am getting in FMX is the same as with the VCL
by realsol
Sun Mar 05, 2017 3:49 am
Forum: VCL
Topic: Incorrect legend (pie chart) if group slice is active
Replies: 9
Views: 17198

Re: Incorrect legend (pie chart) if group slice is active

I just started using TeeChart Standard this last week. I'm glad I found the answer. Unfortunately, this chart and legend are why I purchased the Standard so I could hook to my Dataset and minimize the slices by using the Group Slice. But, as mentioned, the Legend is off. I was hoping to release this...
by realsol
Sat Mar 04, 2017 8:22 pm
Forum: FMX
Topic: Getting the name of a Slice in a Pie Chart
Replies: 1
Views: 7405

Re: Getting the name of a Slice in a Pie Chart

Found the answer. Sorry guys. This is my first day using the component: procedure TMainForm.DBChart1DblClick(Sender: TObject); var t,tmp : Integer; x,y : Double; begin Series1.GetCursorValues(x,y); for t:=0 to DBChart1.SeriesCount-1 do begin tmp:=DBChart1.Series[t].GetCursorValueIndex; if tmp<>-1 th...
by realsol
Sat Mar 04, 2017 7:14 pm
Forum: FMX
Topic: Getting the name of a Slice in a Pie Chart
Replies: 1
Views: 7405

Getting the name of a Slice in a Pie Chart

I am brand new to Tee Chart so first, i appologise for my terms in this question. I am trying to return the name of a Slice of a Pie chart or a Bar Chart when a customer double clicks it. I want to use this name to edit my SQL to show a new chart based on the name of the slice double clicked. I use ...