AddXYZ disregards XLabel parameter in TChart 7.06

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Steve
Newbie
Newbie
Posts: 2
Joined: Thu Feb 23, 2006 12:00 am

AddXYZ disregards XLabel parameter in TChart 7.06

Post by Steve » Tue Jun 26, 2007 2:13 pm

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)?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jun 26, 2007 2:28 pm

Hi Steve,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

erzsebet
Newbie
Newbie
Posts: 21
Joined: Tue Apr 13, 2010 12:00 am

Re: AddXYZ disregards XLabel parameter in TChart 7.06

Post by erzsebet » Wed Jun 23, 2010 5:10 pm

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

erzsebet
Newbie
Newbie
Posts: 21
Joined: Tue Apr 13, 2010 12:00 am

Re: AddXYZ disregards XLabel parameter in TChart 7.06

Post by erzsebet » Wed Jun 23, 2010 7:18 pm

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

Post Reply