TiPlotAxis.TitleMargin
TiPlotAxis See Also
Specifies the margin between the axis title and axis scale labels.
property TitleMargin : Integer;
Description
Use TitleMargin to get or set margin between the axis title and axis scale
labels. TitleMargin represents the percentage of a character size and is based on
the TitleFont used for the axis. A value of 0.5 is equal to half the size of a character.
Example
Delphi
iComponent.XAxis[0].TitleMargin := 0.25;
iComponent.YAxis[0].TitleMargin := 0.25;
C++ Builder
iComponent->XAxis[0]->TitleMargin = 0.25;
iComponent->YAxis[0]->TitleMargin = 0.25;
Contents | Index | Previous | Next