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

AnnotationCollection.AddImageAnnotation(String, 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,
    string imageUrl
)

Parameters

Name Type Description
name String

A String value which specifies the name of the annotation.

imageUrl String

A String value which specifies an URL to the annotation’s image.

Returns

Type Description
ImageAnnotation

An ImageAnnotation object representing the image annotation to be added.

Remarks

Use the AddImageAnnotation method to create an image annotation within a WebChartControl. For a ChartControl, use the overloaded AddImageAnnotation method with the image parameter.

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