I'm using Syncfusion to create graphics in Xamarin Forms .
By studying the documentation , I could not find a way to format the values in my chart, example:
IwantthesevaluesformattedforBraziliancurrency:October-R$14,421.52
DoesanyoneknowhowIcandothis?
MypageinXAML:
<chart:SfChart.Series><chart:BarSeriesItemsSource="{Binding PieSeriesData}" Color="Red" XBindingPath="Name" YBindingPath="Value" LegendIcon="Rectangle" Label="Valor (R$)" EnableAnimation="True">
<chart:BarSeries.DataMarker>
<chart:ChartDataMarker LabelContent="YValue" ShowLabel="True">
<chart:DataMarkerLabelStyle LabelFormat="R$##,##" LabelPosition="Center"/>
</chart:ChartDataMarker>
</chart:BarSeries.DataMarker>
</chart:BarSeries>
</chart:SfChart.Series>