TSeriesBandTool
Hierarchy Properties Methods Events
Unit
TeeSeriesBandTool
Description
This chart tool fills the area between two series (for example two line series) using the border, color, brush, gradient and transparency properties.
ChartTool1.Gradient.Visible := True;
ChartTool1.Series := Series1;
ChartTool1.Series2 := Series2;
It can also fill the area between one series and a constant value, by not setting the Series2 property and setting the BoundValue fixed constant value:
ChartTool1.Series := Series1;
ChartTool1.Series2 := nil;
ChartTool1.BoundValue := 123;