IAnnotationTool.Text
IAnnotationTool

property Text: WideString;

Type Library
TeeChartx

Description
The Text property defines the text for the Annotation Tool.

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