Page 1 of 1

Labels on depth axix

Posted: Mon May 03, 2004 3:30 pm
by 8122778
Hi,

How do I show the values on the depth axix of a Point3D series?
I have added values to such a series using the code:

scoreSeries3D.Add((double)scoreDataX, (double)scoreDataY,
(double)scoreDataZ, scorePlotIDs.ToString(), defaultColor)

I have added that series to a plot:

scorePlot.Series.Add(scoreSeries3D);

Now I want to show the scoreDataZ values on the depth axis and have tried to use code like:

scorePlot.Axes.Depth.Labels.Style =
Steema.TeeChart.AxisLabelStyle.Value;

Nothing shows though. What should I do?

Best regards
Elisabeth

Posted: Wed May 05, 2004 7:26 am
by Chris
Hi Elizabeth,
Nothing shows though. What should I do?
Try:

Code: Select all

private void Form1_Load(object sender, System.EventArgs e) {
	points3D1.FillSampleValues();
	tChart1.Axes.Depth.Visible = true;
}