Hi Ivo,
Sorry for the delay in getting back at this, we have analyzed the reported issue and we like to inform you that the last label in the chart will cut with respect to the width of the text and the chart. For e.g. if the last label is say "1000000" this will definitely cut with respect to the chart width because the width of the text is higher, and we always place the label to the center of the tick. So, to overcome this you can use EdgeLabelsDrawingMode as shift as like in below code snippet.
Code snippet [C#]:
|
NumericalAxis secondaryAxis = new NumericalAxis();
secondaryAxis.EdgeLabelsDrawingMode = EdgeLabelsDrawingMode.Shift;
secondaryAxis.Maximum = 20;
sfChart.SecondaryAxis = secondaryAxis; |
Having said that this works fine in iOS because in Android the labels are rendered based on the device density which will differ with respect to different resolution. So even for a small number like 15 or 16 the width of the text differs for different resolution.
We have also prepared a sample based on this and it can be downloaded from the link below.
Thanks,
Michael