lecho / hellocharts-android

Charts library for Android compatible with API 8+, several chart types with scaling, scrolling and animations 📊
Apache License 2.0
7.44k stars 1.61k forks source link

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 #536

Open malarvizhibe opened 4 years ago

devbro1 commented 4 years ago

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