Page 1 of 1

unable to adjust axis title position, also 360 rotate?

Posted: Wed Jul 12, 2006 2:21 pm
by 8884073
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.

Posted: Wed Jul 12, 2006 2:46 pm
by narcis
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.

Posted: Wed Jul 12, 2006 3:56 pm
by 8884073
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