TiPlotComponent.Annotation

TiPlotComponent See Also

Used to access a specific annotation object.

property
Annotation[Index : Integer]: TiPlotAnnotationObject;

Description

Use Annotation to access a specific annotation object. The index value is zero based and must be less than the AnnotationCount. To add an annotation, use the AddAnnotation method. To delete an annotation, use the DeleteAnnotation method. To remove all annotations, use the RemoveAllAnnotations method.

Example

Delphi

iComponent.Annotation[0].Text := 'xyz';

C++ Builder

iComponent->Annotation[0]->Text = "xyz";

Note: Index is zero based.

Contents | Index | Previous | Next