Is it possible to highlight several values in MPAndroidChart ?
I highlight one value thanks to : barChart.highlightValue(high[0]) but how to highlight 2 values..
Thanks for your answer
Yes, that is possible.
The library has a method called highlightValues(Highlight[] highs)
.
This method allows to provide an array of Highlight
objects to highlight multiple values.
Example:
Highlight h1 = new Highlight(...); // 1st value to highlight
Highlight h2 = new Highlight(...); // 2nd value to highlight
chart.highlightValues(new Highlight[] {h1, h2});
An in-depth tutorial on highlighting can be found here.
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