Skip to main content

ChartControlSettings.Annotations Property

Provides access to the annotations collection of the ChartControlSettings.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public AnnotationCollection Annotations { get; }

Property Value

Type Description
AnnotationCollection

A AnnotationCollection object that is 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 (irrespective of which particular element they are anchored to), via the ChartControlSettings.AnnotationRepository property.

For more information, refer to Annotations.

See Also