TiPlotAxis.LabelsVisible
TiPlotAxis
Specifies whether the Axis Labels are shown.
property LabelsVisible : Boolean;
Description
Use LabelsVisible to specify whether the Axis Labels are shown. If this
property is set to FALSE, then the axis labels are hidden and the space that they
would have occupied will be removed during the drawing of the axis resulting in
no "blank" space.
Example
Delphi
iComponent.XAxis[0].LabelsVisible := True;
iComponent.YAxis[0].LabelsVisible := True;
C++ Builder
iComponent->XAxis[0]->LabelsVisible = True;
iComponent->YAxis[0]->LabelsVisible = True;
Contents | Index | Previous | Next