PhilJay / MPAndroidChart

A powerful 🚀 Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.
Other
37.55k stars 9.01k forks source link

Draw icons on stacked BarChart #3462

Open adriamt opened 6 years ago

adriamt commented 6 years ago

I have a stacked BarChart that works fine, but I want to draw an icon to the top of the bar, but when I add the Drawable to the Entry it is drawn on both of the bars that are on the stack, like the image below. screenshot_20170927-171637_01 1 Any clue how to accomplish this

mskahraman commented 3 years ago

for(i in 0 until values.size){ if(values[i].y.toInt() >= 8000){ values[i].icon = ContextCompat.getDrawable(this,R.drawable.oval_check) } }