TSeriesRegionTool
Hierarchy Properties Methods Events
Unit
TeeSeriesRegion
Description
This tool fills the area between Series point values and a constant value, or between series and the axis line.
// Choose a Series and a value:
ChartTool1.Series := Series1;
ChartTool1.Origin := 123;
// Start and end point indexes can be also customized:
ChartTool1.LowerBound := 0;
ChartTool1.UpperBound := Series1.Count-1;
// Or set automatic (the default) :
ChartTool1.AutoBounds := True;
// If we dont need a constant value:
ChartTool1.UseOrigin := False;