Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to highlight multiple values with MPAndroidChart?

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

like image 236
user5658783 Avatar asked Jan 11 '16 15:01

user5658783


1 Answers

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.

like image 159
Philipp Jahoda Avatar answered Sep 30 '22 08:09

Philipp Jahoda