H,
When i change the orientation angle of the axis title to any angle between 1 and 89 degrees, the Axis Title text overlaps with the Axisl Label.
Similar behavior can be seen at angle between 180 and 360
The Texts do not over lap when the Angle is either 0 or 90, or beween 90 and 180.
Whats going on ? How can this be corrected ?
Regards
Axis Title Overlaps the Axis lables
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lakshmi,
Could you please read this thread about a similar issue?
If this doesn't help you could also try setting labels height, for example:
Could you please read this thread about a similar issue?
If this doesn't help you could also try setting labels height, for example:
Code: Select all
tChart1.Axes.Bottom.Labels.Height = 50;
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 |
THANKS FOR THE LINK
However the 'Labels.Height' property does not help,
Rather to make the size of the lables constant we need to set the following property up.
This ends up adjusting the space between left axis title and left axis values(labels).
Strange that we have to do this .. but it works !!!
Rather to make the size of the lables constant we need to set the following property up.
Code: Select all
axis.Labels.CustomSize = 50;
Strange that we have to do this .. but it works !!!
The 50 wont work always .
The custom size that needs to be set, depends upon the angle as well as the length of the Axis Title.
If the axis title length exceeds a certain value then 50 wont suffice.!! can there be a logical solution to this.
If the axis title length exceeds a certain value then 50 wont suffice.!! can there be a logical solution to this.