Labels on depth axix

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Lizabeth
Newbie
Newbie
Posts: 24
Joined: Thu Nov 13, 2003 5:00 am
Location: Sweden

Labels on depth axix

Post by Lizabeth » Mon May 03, 2004 3:30 pm

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

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Wed May 05, 2004 7:26 am

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;
}
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply