regas99
regas99
The `fire on tap` issues is easy. Make a one-line change to `BarLineChartTouchListener`: ```java case MotionEvent.ACTION_DOWN: startAction(event); stopDeceleration(); saveTouchStart(event); ### break -> return true; ``` The issue of getting clicks...
This is well documented [here](https://weeklycoding.com/mpandroidchart-documentation/highlighting/). Your activity must implement `OnChartValueSelectedListener` ```java class MyActivity : DemoBase(), OnChartValueSelectedListener { override fun onValueSelected(Entry e, Highlight h) { // e is the bar that...
The paradigm for highlights is that they are initiated by touching the screen. So xPx and yPx are assumed to be known a priori and `getHighlight(xPx, yPx)` calculates the corresponding...
[Update: the behavior of the axis highlight has changed in the final version - PR #4477. The axis now draw a recttangle and text at the highlighted value. See the...