Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How MPAndroidChart display all xaxis values

I'm developing some chart features using MPAndroidChart library.

Is there any way to display all the xaxis values I added? Seems that the library will auto calculate on xaxis, some of values will be hidden. ex. display date: 05-17 05-17 05-15 .... the same day 05-17 will not shown.

thanks!

like image 781
bchang Avatar asked May 17 '15 10:05

bchang


1 Answers

Check out the documentation of the XAxis.

And the method setLabelsToSkip(...). If you set that to 0, none of the labels in your x-axis will be skipped during rendering.

Update v3.0.0

As of this release, the x-axis is treated equally to the y-axis. If you want to display all labels, you can do so by using the axis.setLabelCount(...) method.

like image 153
Philipp Jahoda Avatar answered Oct 03 '22 15:10

Philipp Jahoda