Skip to main content

WebChartControl.Annotations Property

Provides access to the annotations collection of the WebChartControl.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v23.2.Web.dll

NuGet Package: DevExpress.Web.Visualization

Declaration

public AnnotationCollection Annotations { get; }

Property Value

Type Description
AnnotationCollection

An AnnotationCollection object that represents the chart’s collection of annotations.

Remarks

An annotation is added to a chart’s collection, if its Annotation.AnchorPoint property is set to ChartAnchorPoint.

Use the Annotations property, to access annotations anchored to a chart. Alternatively, you can centrally access all annotations that are present in a chart control (with no regard to which particular element they are anchored), via the WebChartControl.AnnotationRepository property.

For more information, refer to Annotations.

See Also