I am using MPAndroidChart to create some line charts. Because the data are too many the chart is not clear enough and needs tapping and zooming.
Is there a way to set a max value of x-xalues to be displayed (e.g the 10 last ones) and display the others by scrolling?
I didnt find anything in the documentation. I only found the
setVisibleXRangeMaximum(float maxXRange): Sets the size of the area (range on the x-axis) that should be maximum visible at once. If this is e.g. set to 10, no more than 10 values on the x-axis can be viewed at once without scrolling.
function that is not available for line charts as I have noticed.