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
Labels on depth axix
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi Elizabeth,
Try:Nothing shows though. What should I do?
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/
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/