the setUsePercentValues() not working for the version-v3.1.0.
It will always display the value instead of appending the percentage.
I have the same issue for v3.1.0
Updated:
Fixed with replacing this line :
pieData.setValueFormatter(new PercentFormatter());
With this line:
pieData.setValueFormatter(new PercentFormatter(pieChart));
Most helpful comment
I have the same issue for
v3.1.0Updated:
Fixed with replacing this line :
pieData.setValueFormatter(new PercentFormatter());With this line:
pieData.setValueFormatter(new PercentFormatter(pieChart));