0
Fala Rafael,
You want to show on the chart even when the value is 0?
Because you can add to the chart, only when the value is greater than 0, example:
if(value > 0){
dataSet.add(...)
} else {
// faz nada
}
Hugs.
0
0
Fala Rafael,
You want to show on the chart even when the value is 0?
Because you can add to the chart, only when the value is greater than 0, example:
if(value > 0){
dataSet.add(...)
} else {
// faz nada
}
Hugs.
Browser other questions tagged java android
You are not signed in. Login or sign up in order to post.
Yes, because sometimes for example are 3 dice, one of them can come with 24 thousand and the other with 10, then I have to display the same way, I wonder if there is a way I put a spacing between the texts not to be like this
– Rafael de Azeredo