Hello Steema!
I use WPF version of TChart and I want to create 3D surface. I've added surface series to TChart and I have got 3D picture. But I can't set Title, Label, etc. of Y-Axes or I don't know how to do it. I've tried to set TChart.Axes.Depth.Title.Text property but it's had no effect. What I do wrong?
In Windows Forms version of TChart it works ok. Maybe it's a bug?
Y-Axis settings of 3D Tchart.WPF
Re: Y-Axis settings of 3D Tchart.WPF
Hi,
The following code seems to work fine for me here:
If you still find problems with it, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
The following code seems to work fine for me here:
Code: Select all
Surface surf1 = new Surface(tChart1.Chart);
surf1.FillSampleValues();
tChart1.Aspect.Orthogonal = false;
tChart1.Aspect.Chart3DPercent = 100;
tChart1.Aspect.Zoom = 75;
tChart1.Axes.Depth.Visible = true;
tChart1.Axes.Depth.Title.Text = "My depth axis";
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Y-Axis settings of 3D Tchart.WPF
Thanks, it works now. My problem was that Depth.Visible is false by default.