Page 1 of 1

Distance between axis labels and axis

Posted: Mon Nov 15, 2004 2:45 pm
by 8880867
Apologies in advance if this is covered in the documentation - I'm still getting to grips with the large number of objects and properties ... Basically, I'd like to know if there is a way to increase the distance between the axis labels and the axis. [The CustomSize property seems to increase the distance between the axis labels and the axis title.]

The reason I'm asking is that I'm producing 3D charts, and the labels for different axes sometimes overlap - e.g. the minimum values on the Bottom and Left axes, and the maximum and minimum values on the Bottom and Depth axes respectively. Whilst this is primarily a cosmetic issue, it is an important one for us, as the charts are used for presentations and management reports. Unfortunately, not displaying the minimum and/or maximum values is not an option; neither is setting the MinimumOffset and MaximumOffset properties - although this alleviates the problem, it necessarily adds a margin around the plotted surfaces, and this is not acceptable for our purposes.

Also, there seems to be a problem with the TChart.Aspect.ZoomText property. When this is set to true, all text resizes appropriately when zooming *except for the title of the vertical [Left] axis*. (This is not a major issue for me, since my workaround of adjusting the font size for this axis title according to the Zoom percentage seems to work okay!)

Thanks in advance for any suggestions you can offer.

Posted: Mon Nov 15, 2004 3:29 pm
by Pep
Hi Nathan,
Apologies in advance if this is covered in the documentation - I'm still getting to grips with the large number of objects and properties ... Basically, I'd like to know if there is a way to increase the distance between the axis labels and the axis. [The CustomSize property seems to increase the distance between the axis labels and the axis title.]
you can change the distance increasing the tick lengh :
tChart1.Axes.Bottom.Ticks.Length = 50;
Also, there seems to be a problem with the TChart.Aspect.ZoomText property. When this is set to true, all text resizes appropriately when zooming *except for the title of the vertical [Left] axis*. (This is not a major issue for me, since my workaround of adjusting the font size for this axis title according to the Zoom percentage seems to work okay!)
Yes, you're correct, it's a bug. I've added it on our defect list and a fix for it will be considered to inclusion for the next maintenance releases.
Thanks for the report.

Posted: Mon Nov 15, 2004 5:18 pm
by 8880867
Many thanks for the prompt and helpful reponse - that does the trick!