ComponentOne FlexChart for UWP
Positioning Annotations
FlexChart > Working with FlexChart > FlexChart Elements > Annotations > Positioning Annotations

In FlexChart, positioning annotations includes two mechanisms (not necessarily in the same order), as follows:

Positioning Annotations Relative to the Chart

Positioning annotations relative to the chart includes specifying the attachment and the location of the annotations in the chart.

FlexChart provides four ways of attaching annotations, as follows:

Positioning Annotations Relative to the Data Points

Specify the position of annotations with respect to the data points by setting the Position property from the AnnotationPosition enum.

The following image displays the Rectangle annotation highlighting the maximum tax revenue in the year, 2013.

 

The following code compares tax revenue data of nine consecutive years to display the maximum tax revenue. The code shows how to specify the attachment, location, and position of the Rectangle annotation to Annotation Layer in FlexChart.

<Annotation:Rectangle Content="Maximum Tax Revenue&#13;2013&#13;45000" 
              Attachment="DataIndex"
              SeriesIndex="0"
              PointIndex="5"
              Position="Top"
              Width="140" 
              Height="50">
</Annotation:Rectangle>