Gets the list with the annotations of this series.
Namespace: MindFusion.Charting.Wpf
Assembly: MindFusion.Charting.Wpf
C# Copy Code |
---|
public AnnotationsCollection Annotations { get; } |
Visual Basic Copy Code |
---|
Public ReadOnly Property Annotations As AnnotationsCollection |
An instance of the AnnotationsCollection class.
Create an Annotation object for each Annotation you want to show at the bar chart. Add the annotations to the Annotations property.
The following code creates a new Annotation for the bar with index 0 (the first bar on the chart). It is displayed as a point at the location of 10 inside the bar and has a label. The Annotation point is painted in green.
C# Copy Code |
---|
Annotation annotation1 = new Annotation(); |
Visual Basic Copy Code |
---|
Dim annotation1 As New Annotation() |