I'm using GraphView for Android, and i'm trying to display the datapoint value above said datapoint in case of an onClick event. Currently, i'm using
series.setOnDataPointTapListener(new OnDataPointTapListener() {
@Override
public void onTap(Series series, DataPointInterface dataPoint) {
Toast.makeText(MainActivity.this, dataPoint.getY(), Toast.LENGTH_SHORT).show();
}
});
Is there a way of showing the value right above the datapoint ? Any help would be much appreciated.