When using the LabelStyle.LabelFormat string to format values in chart labels, the result is not consistent across platforms. For example, I have tried the following:
ChartDataMarker dataMarker = new ChartDataMarker();
dataMarker.LabelStyle.LabelFormat = "N1"
On Windows Phone, a value of, say, 16.4993 gives the result "16.5". On Android, however, the result is "N16". I have not tried on iOS.
What format strings must I use to have a consistent output across platforms?
Thanks