ITeeShapePosition.Left
ITeeShapePosition
property Left: Integer;
Type Library
TeeChartx
Description
Reads/Writes the Left position of the TeeChart shape.
Example [Visual Basic]:
Private Sub Form_Load()
With TChart1
.AddSeries scLine
.Series(0).FillSampleValues 10
.Tools.Add tcAnnotate
With .Tools.Items(0).asAnnotation
.Shape.CustomPosition = True
.Shape.Left = 200
.Shape.Top = 200
.Text = "Custom Position"
End With
End With
End Sub