TSeriesRegionTool.AutoBounds
TSeriesRegionTool
property AutoBounds: Boolean;
Unit
TeeSeriesRegion
Description
Default is True.
When True, the LowerBound and UpperBound properties are automatically calculated using the number of points in the series:
LowerBound is set to zero (this is the index of the first point in the series).
UpperBound is set to Series.Count -1 (the index of the last point in the series).
When False, you can set the custom bound values, for example:
ChartTool1.AutoBounds := False;
ChartTool1.LowerBound := 12;
ChartTool1.UpperBound := 35;