MPAndroidChart PieChart Remove Percentages

I am using MPAndroidChart .

I want to remove percentage values ​​on PieChart. How can i do this?PieChart Picture

+3


source to share


1 answer


To not draw the input values, call: pieData.setDrawValues(false)



To not draw the x values, call: pieChart.setDrawSliceText(false)

+9


source







All Articles