I need to change the increment value for the y axis.
I use this code to set min and max:
YAxis rightYAxis = chart.getAxisRight(); rightYAxis.setAxisMaxValue(180); rightYAxis.setAxisMinValue(0);
This gives me an idea of ββthe right Y axis:

The Y axis shows [0, 30, 60, ..., 180], so the increment here is 30. But I need to set the increment to 10. Therefore, I want to see [0, 10, 20, ..., 180].
I thought mChart.setVisibleYRange(10, YAxis.AxisDependency.RIGHT); will help me, but itβs not. The same for rightYAxis.mAxisRange = 10; .
Can I customize it? That would be very helpful.
source share