I am currently using MPAndroidChart for my application. In one scenario, I show three datasets within one linechart and when I click on the line on the graph, I get to show only one Tooltip at a time. Instead based on the cross hair position, I would like to show individual tooltip for all three datasets.
I have gone through many other questions here and I couldn't find exactly what I am looking for. This is a sample screenshot of my required output. I would like to know if this is possible and any help is much appreciated.
Please try with the solution below & let me know your feedback
lineChart.setOnChartValueSelectedListener(new OnChartValueSelectedListener() {
@Override
public void onValueSelected(Entry e, Highlight h) {
Highlight highlight[] = new Highlight[lineChart.getData().getDataSets().size()];
for (int j = 0; j < lineChart.getData().getDataSets().size(); j++) {
IDataSet iDataSet = lineChart.getData().getDataSets().get(j);
for (int i = 0; i < ((LineDataSet) iDataSet).getValues().size(); i++) {
if (((LineDataSet) iDataSet).getValues().get(i).getX() == e.getX()) {
highlight[j] = new Highlight(e.getX(), e.getY(), j);
}
}
}
lineChart.highlightValues(highlight);
}
@Override
public void onNothingSelected() {
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With