how to adjust auto axis label spacing?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
davids
Newbie
Newbie
Posts: 13
Joined: Wed Dec 10, 2003 5:00 am
Location: Phoenix, AZ

how to adjust auto axis label spacing?

Post by davids » Tue Jun 29, 2004 6:40 pm

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?

Pep
Site Admin
Site Admin
Posts: 3273
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Wed Jun 30, 2004 10:43 am

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;
?

Post Reply