How to fix MPAndroidChart value is above when it is 0

0

I'm having this problem when I use MPAndroidChart, can anyone tell me if I have some method to put a spacing between one value and another? not to get over it? Thanks

    
asked by anonymous 11.07.2016 / 21:29

1 answer

0

Speak Rafael,

Do you want to show in the chart even when the value is 0?

Because you can add to the chart, only when the value is greater than 0, eg

if(value > 0){
   dataSet.add(...)
} else {
   // faz nada
}

Hugs.

    
11.07.2016 / 22:57