webhackxt
Results
2
comments of
webhackxt
> Here is solution to problem: onValueSelected getting called even on unfilled (empty) bar area (top of filled bar area): > > ``` > /** > * Selected Y Index...
@OverRide public void onChartSingleTapped(MotionEvent me) { x=me.getX(); y=me.getY(); your_bar_char.highlightValue(null); //Turn off highlighting after selected ,Otherwise, you will need to click twice next time } your_bar_chart.setOnChartValueSelectedListener(new OnChartValueSelectedListener() { @OverRide public void...