I'm trying to create a chart in my app using MPAndroidChart.
My aim is to get a graph looking like this one:
But with some specific features.
chart.getLayoutParams().width=100*entries.size();
and finally, when touching above one of the bar, not selecting the bar under ( which could prevent the user to scroll if there is a way to do so! ).
Is it technically possible with MPAndroidChart yet? Thanks in advance.
Yes, it is. And please do not use ScrollView
.
Read this for modifying the viewport and "making the chart wider": https://github.com/PhilJay/MPAndroidChart/wiki/Modifying-the-Viewport
The "speech bubble" you are talking about is the MarkerView
, and yes, it can be displayed when scrolling as well.