unable to adjust axis title position, also 360 rotate?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Jon
Newbie
Newbie
Posts: 8
Joined: Tue Sep 07, 2004 4:00 am

unable to adjust axis title position, also 360 rotate?

Post by Jon » Wed Jul 12, 2006 2:21 pm

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Jul 12, 2006 2:46 pm

Hi Jon,
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.
To solve it you can try doing something like this:

Code: Select all

      tChart1.Axes.Left.Labels.CustomSize = 50; 
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, 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.
This can already be done in v2 using 3D chart editor tab properties. You can also programmatically control this property using:

Code: Select all

      tChart1.Aspect.Rotation = 0;
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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Jon
Newbie
Newbie
Posts: 8
Joined: Tue Sep 07, 2004 4:00 am

Post by Jon » Wed Jul 12, 2006 3:56 pm

Narcis-
Thank you for the quick reply. Adjusting the label size added space padding between the labels and the axis titles-- thanks! I took a look at the openGL demo and am looking forward to taking advantage of it. Many thanks, Jon

Post Reply