ISeriesRegionTool
Hierarchy Properties

Type Library
TeeChartx

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:

tChart1.Tools.Items(0).asSeriesRegion.Series = "Series0"

tChart1.Tools.Items(0).asSeriesRegion.Origin = 123

' Start and end point indexes can be also customized:

tChart1.Tools.Items(0).asSeriesRegion.LowerBound = 0

tChart1.Tools.Items(0).asSeriesRegion.UpperBound = tChart1.Series(0).Count-1

' Or set automatic (the default) :

tChart1.Tools.Items(0).asSeriesRegion.AutoBounds = True

' If we dont need a constant value:

tChart1.Tools.Items(0).asSeriesRegion.UseOrigin = False