ITowerSeries.Origin
ITowerSeries
property Origin: Double;
Type Library
TeeChartx
Description
The axis vertical position considered to be the "origin" of points.
Points with values below origin are considered "negatives".
By default, Origin is not used. Instead, the lowest Y value of the series is considered to be the origin.
See UseOrigin property to enable Origin.
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