IAnnotationTool.Position
IAnnotationTool

property Position: EAnnotationPosition;

Type Library
TeeChartx

Description
The Position property defines a default position for the Annotation Tool text box and text. The options are:

ppLeftBottom

ppLeftTop

ppRightBottom

ppRightTop

Example [Visual Basic]:

With TChart1

.Tools.Add tcAnnotate

With .Tools.Items(0).asAnnotation

.Active = True

.Position = ppRightBottom

.Shape.Gradient.Visible = True

.Shape.ShapeStyle = fosRoundRectangle

.Shape.Font.Name = "Verdana"

.Text = "My Text"

End With

End With