<chart:SfChart.Annotations>
<chart:VerticalLineAnnotation X1="1" Text="Annotation " CanDrag="False"
HorizontalTextAlignment="Right" />
..
|
<chart:SfChart.Annotations>
<chart:VerticalLineAnnotation X1="1" CanDrag="False" >
<chart:VerticalLineAnnotation.ContentTemplate>
<DataTemplate>
<TextBlock Text="Annotation" Margin="-200,0,0,0"/>
</DataTemplate>
</chart:VerticalLineAnnotation.ContentTemplate>
</chart:VerticalLineAnnotation>
<chart:VerticalLineAnnotation X1="2" CanDrag="False" >
<chart:VerticalLineAnnotation.ContentTemplate>
<DataTemplate>
<TextBlock Text="Annotation Text" Margin="-200,0,0,0"/>
</DataTemplate>
</chart:VerticalLineAnnotation.ContentTemplate>
</chart:VerticalLineAnnotation>
<chart:VerticalLineAnnotation X1="3" CanDrag="False" >
<chart:VerticalLineAnnotation.ContentTemplate>
<DataTemplate>
<TextBlock Text="Annotation Text Text" Margin="-200,0,0,0"/>
</DataTemplate>
</chart:VerticalLineAnnotation.ContentTemplate>
</chart:VerticalLineAnnotation>
<chart:VerticalLineAnnotation X1="4" CanDrag="False" >
<chart:VerticalLineAnnotation.ContentTemplate>
<DataTemplate>
<TextBlock Text="Text" Margin="-200,0,0,0"/>
</DataTemplate>
</chart:VerticalLineAnnotation.ContentTemplate>
</chart:VerticalLineAnnotation>
</chart:SfChart.Annotations> |