Page 1 of 1

AddXYZ disregards XLabel parameter in TChart 7.06

Posted: Tue Jun 26, 2007 2:13 pm
by 9240410
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)?

Posted: Tue Jun 26, 2007 2:28 pm
by narcis
Hi Steve,

You may need to make series marks visible, for example:

Code: Select all

Series1.Marks.Visible:=true;

Re: AddXYZ disregards XLabel parameter in TChart 7.06

Posted: Wed Jun 23, 2010 5:10 pm
by 16555616
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

Re: AddXYZ disregards XLabel parameter in TChart 7.06

Posted: Wed Jun 23, 2010 7:18 pm
by 16555616
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