We recently updated from TChart 5.02 to 7.06 for our Delphi 6.
In Tchart 5.02 the call to AddXYZ (x,y,z,label); worked fine.
In TChart 7.06 the overloading is defined defferently so we had to use
AddXYZ(x,y,z,label,color); The label does not show up on the chart. Do we have a bug here with 7.06 (also same in 7.07)?
AddXYZ disregards XLabel parameter in TChart 7.06
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Steve,
You may need to make series marks visible, for example:
You may need to make series marks visible, for example:
Code: Select all
Series1.Marks.Visible:=true;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: AddXYZ disregards XLabel parameter in TChart 7.06
Hello,
I am using TeeChart Pro 8.06, with Delphi 2010. I am also having trouble getting AddXYZ to output the XLabel I specify. My series is a TPoint3DSeries. I have tried setting the Series.Marks.Visible to True, but this has no effect on the X-axis labels. Can you please tell me if there might be some other setting I need to change to get the labels to display?
Thank you very much!
-erzsebet
I am using TeeChart Pro 8.06, with Delphi 2010. I am also having trouble getting AddXYZ to output the XLabel I specify. My series is a TPoint3DSeries. I have tried setting the Series.Marks.Visible to True, but this has no effect on the X-axis labels. Can you please tell me if there might be some other setting I need to change to get the labels to display?
Thank you very much!
-erzsebet
Re: AddXYZ disregards XLabel parameter in TChart 7.06
Hello, again!
I have found the answer to my own question. The property I need to set in order to display a text XLabel parameter of AddXYZ is:
Series1.ParentChart.Axes.Bottom.LabelStyle := talText;
Thanks!
-erzsebet
I have found the answer to my own question. The property I need to set in order to display a text XLabel parameter of AddXYZ is:
Series1.ParentChart.Axes.Bottom.LabelStyle := talText;
Thanks!
-erzsebet