Skip to main content
A newer version of this page is available. .

AnnotationCollection.AddImageAnnotation(String) Method

Appends the specified ImageAnnotation object to the current collection.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public ImageAnnotation AddImageAnnotation(
    string name
)

Parameters

Name Type Description
name String

A String value which specifies the name of the annotation.

Returns

Type Description
ImageAnnotation

An ImageAnnotation object representing the image annotation to be added.

Remarks

This method adds an ImageAnnotation object with the specified name to the annotations collection of a chart, pane or series point.

After an annotation is added to an element’s collection, it can be accessed via the corresponding property of this element (ChartControl.Annotations, XYDiagramPaneBase.Annotations, or SeriesPoint.Annotations). Alternatively, to centrally access all annotations that are present in a chart control, use the ChartControl.AnnotationRepository property.

For more information, refer to Annotations.

See Also