TiPlotComponent.ClipAnnotationsToAxes
TiPlotComponent
Specifies whether Annotations are clipped to their associated axes.
property ClipAnnotationsToAxes : Boolean;
Description
Use ClipAnnotationsToAxes to specify whether or not Annotations are clipped to
their associated X and Y-Axes.
When this value is True, if Annotations attempt to draw outside of the
overlapping axes region, they will be clipped to that region. This keeps the
Annotations within their own axes area, and prevents the annotations from drawing over
other channels.
When this value is False, Annotations will be able to draw outside of the
overlapping axes region.
Note: this property only affects charts that utilize stacked axes. In a
non-stacked axis chart, the X and Y-Axes take up 100% of the width and height of the
DataView area, making this property have no effect.
Example
Delphi
iComponent.ClipAnnotationsToAxes := True;
C++ Builder
iComponent->ClipAnnotationsToAxes = TRUE;
Contents | Index | Previous | Next