Page 1 of 1

how to adjust auto axis label spacing?

Posted: Tue Jun 29, 2004 6:40 pm
by 9335210
I've got a label on the Y-axis with auto-display ticks and values along the Y-axis. However, these values are rather wide, eg. "0.125", "0.8325", etc, and they often tend to overwrite the Y-axis label -- it needs to be moved further away from the axis. How can this be done?

Posted: Wed Jun 30, 2004 10:43 am
by Pep
Hi David,

how about changin the increment for the axes and setting an Axes labels separation :
Chart1.Axes.Left.Increment := X;
Chart1.Axes.Left.LabelsSeparation := X;
?