ITowerSeries.UseOrigin
ITowerSeries

property UseOrigin: WordBool;

Type Library
TeeChartx

Description
Default value: false

When True, the Origin property is used as the reference value where points are considered positive or negative.

When False, the lowest Y value of the series is the reference value (no points are negative).

Example [Visual Basic]:

Private Sub Form_Load()

Dim x As Integer, z As Integer

TChart1.Series(0).Clear

For x = 1 To 10

For z = 1 To 10

TChart1.Series(0).asTower.AddXYZ x, Rnd * 1000 - 100, z, "", clTeeColor

Next z

Next x

' example:

TChart1.Series(0).asTower.Origin = 500

TChart1.Series(0).asTower.UseOrigin = True

End Sub