<ContentPage.Resources>
<ResourceDictionary>
<OnPlatform x:TypeArguments="x:String" x:Key="FontIcon">
<On Platform="Android" Value="Segoe_MDL2_Assets.ttf#Segoe MDL2 Assets" />
<On Platform="iOS" Value="/Assets/Segoe_MDL2_Assets.ttf#Segoe MDL2 Assets" />
<On Platform="UWP" Value="Segoe MDL2 Assets"/>
</OnPlatform>
</ResourceDictionary>
</ContentPage.Resources>
. . .
<chart:ColumnSeries x:Name="series" ItemsSource="{Binding Data}" XBindingPath="XValue" YBindingPath="Growth" >
<chart:ColumnSeries.DataMarker>
<chart:ChartDataMarker ShowMarker="False" >
<chart:ChartDataMarker.LabelStyle>
<chart:DataMarkerLabelStyle OffsetY="-9" LabelPosition="Inner" />
</chart:ChartDataMarker.LabelStyle>
<chart:ChartDataMarker.LabelTemplate>
<DataTemplate>
<Label Text=""
HorizontalTextAlignment="Center"
VerticalOptions="Center"
VerticalTextAlignment="Center"
HorizontalOptions="Start"
FontSize="25"
TextColor="White" FontFamily="{StaticResource FontIcon}">
</Label>
</DataTemplate>
</chart:ChartDataMarker.LabelTemplate>
</chart:ChartDataMarker>
</chart:ColumnSeries.DataMarker>
</chart:ColumnSeries> |