I am trying to create a chart in my application using MPAndroidChart .
My goal is to get a graph similar to this: 
But with some specific features.
- The chart will be wider than the screen width, so it should have a minimum width and scroll (for width I use this workaround, but not scrollable):
chart.getLayoutParams().width=100*entries.size(); - I would like to have the same speech bubble when I click on the panel (I donβt know if there is a way to have it and scroll at the same time, since for scrolling I assume that the workaround using layout and scrollview is the only solution if this function not yet implemented)
and, finally, when touching one panel above, without selecting a panel (which may interfere with user scrolling, if there is a way to do it!).
How technically possible with MPAndroidChart? Thanks in advance.
source share