unable to adjust axis title position, also 360 rotate?
unable to adjust axis title position, also 360 rotate?
I am unable to change the position of axis titles on my 3D surface chart. I need to have more space between the axis titles and the labels since their text overlaps a bit. I have tried to add custom text to title the axis, but this text does not rotate with the chart. Also, I was under the impression that 3D charts would be able to rotate 360 degrees in v2, however I do not see it. Many thanks.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Jon,
However we are aware there are some issues when rotating the chart. This is on our wish-list to be enhanced for future releases.
Also you can have full chart rotation using Open GL which is included with TeeChart for .NET v2. You'll find a demo at TeeChart's program group.
To solve it you can try doing something like this:I am unable to change the position of axis titles on my 3D surface chart. I need to have more space between the axis titles and the labels since their text overlaps a bit. I have tried to add custom text to title the axis, but this text does not rotate with the chart.
Code: Select all
tChart1.Axes.Left.Labels.CustomSize = 50;
This can already be done in v2 using 3D chart editor tab properties. You can also programmatically control this property using:Also, I was under the impression that 3D charts would be able to rotate 360 degrees in v2, however I do not see it. Many thanks.
Code: Select all
tChart1.Aspect.Rotation = 0;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |