Hello,
I'm creating my series dynamically using this
TrendSeries.Add(new SplineAreaSeries()
{
ItemsSource = dataModels,
XBindingPath = "Name",
YBindingPath = "Value",
Label = label.Equals(string.Empty) ? LocString.Total : label,
DataMarker = new ChartDataMarker()
{
LabelStyle = new DataMarkerLabelStyle()
{
LabelFormat = IsCurrency ? "C2" : "N0"
}
},
Opacity = 0.5,
Color = colors[seriesNumber]
});
And the Axis
SecondaryAxisVersus.LabelStyle.LabelFormat = "N0"; // Or C2 if is currency
In UWP and iOS it works fine, but in Android the values starts with "N0#####" or "C2#####" in both axis and data markers labels