Page 1 of 1

Help with Datasource property setting vs VCL

Posted: Tue Aug 29, 2017 8:03 pm
by 16881567
Hi,

I will upload two screen grabs to illustrate my issue. I have built a dialog in both VCL and FMX versions (Berlin 10.1) using TDBChart. As far as I can tell, I've set the properties the same in the Series 1 Datasource page. The Labels and Pie drop-downs show the same thing in both platforms. But you can see the difference.

The legends are fine in both screen grabs, but in the FMX version, I want to show the number of givers that each slice of the pie represents rather than the giving range that's shown in the legend.

Does anyone know what property to set that will provide this? I can't seem to find a difference in the way I have the VCL and the FMX versions set up, though I'm sure I've missed something. Any help appreciated.

Mic

Re: Help with Datasource property setting vs VCL

Posted: Thu Aug 31, 2017 8:52 am
by yeray
Hello,

You can force your series marks to show the values instead of showing the labels with the smsValue Style:

Code: Select all

  Series1.Marks.Style:=smsValue;

Re: Help with Datasource property setting vs VCL

Posted: Thu Aug 31, 2017 2:40 pm
by 16881567
Perfect! Thanks so much!