TiPlotAxis.LabelSeparation
TiPlotAxis See Also
Specifies the minimum separation between scale labels.
property LabelSeparation : Double;
Description
Use LabelSeparation to get or set the minimum separation between scale labels.
LabelSeparation represents the percentage of a character size and is based on
the LabelsFont used for the axis. A value of 0.5 is equal to half the size of a character.
The actual separation maybe greater due to the AutoScale reducing the number of
major ticks to keep the scale labels in a human readable format (1-2-5 Rule).
Example
Delphi
iComponent.XAxis[0].LabelSeparation := 2;
iComponent.YAxis[0].LabelSeparation := 2;
C++ Builder
iComponent->XAxis[0]->LabelSeparation = 2;
iComponent->YAxis[0]->LabelSeparation = 2;
Contents | Index | Previous | Next