lecho/hellocharts-android

y axis value only shows three digits. i.e, 0,300,600,900,200,500,800,100 etc. I need to show it as 0,300,600,900,1200,1500,1800,2100

malarvizhibe opened this issue · 1 comments

y axis value only shows three digits. i.e, 0,300,600,900,200,500,800,100 etc. I need to show it as 0,300,600,900,1200,1500,1800,2100

not sure if it helps but you can generate your own axis values:
AxisValue axis_val = new AxisValue(1200).setLabel("1200");

there is also Axis.setMaxLabelChars(5) which may come in handy