Page 1 of 1

Adding labels to a POINTS3D series

Posted: Mon Nov 13, 2006 4:12 am
by 9637403
I want to be able to add text labels to the X axis (at least) and preferably the Y and Z axis also.

I have tried

iPoint = serPoints3D.Add(oy)
serPoints3D(iPoint).Label = ox
serPoints3D(iPoint).Z = oz

where oy is my Y value (DOUBLE), oz is my Z value and ox is my character value for the X axis. It executes however I get number along the X axis.

Is there something else I can try?

Posted: Mon Nov 13, 2006 11:00 am
by narcis
Hi Adrian,

Yes, set the axes labels style:

Code: Select all

			tChart1.Axes.Bottom.Labels.Style = Steema.TeeChart.AxisLabelStyle.Text;
			tChart1.Axes.Left.Labels.Style = Steema.TeeChart.AxisLabelStyle.Text;
			tChart1.Axes.Depth.Labels.Style = Steema.TeeChart.AxisLabelStyle.Text;