-
public interface OnChartValueSelectedListenerListener for callbacks when selecting values inside the chart by touch-gesture.
-
-
Method Summary
Modifier and Type Method Description abstract voidonValueSelected(Entry e, Highlight h)Called when a value has been selected inside the chart. abstract voidonNothingSelected()Called when nothing has been selected or an "un-select" has been made. -
-
Method Detail
-
onValueSelected
abstract void onValueSelected(Entry e, Highlight h)
Called when a value has been selected inside the chart.
- Parameters:
e- The selected Entryh- The corresponding highlight object that contains informationabout the highlighted position such as dataSetIndex, ...
-
onNothingSelected
abstract void onNothingSelected()
Called when nothing has been selected or an "un-select" has been made.
-
-
-
-