theanilpaudel
theanilpaudel

Reputation: 3478

How to increase the size of Percent Values in pie chart of MPAndroidChart?

I am using MPAndroidChart for displaying a PieChart like in the image and I want to increase the size of percentage values, like 38%, 14% and so on but I can't find any methods to do so. enter image description here

Upvotes: 2

Views: 2067

Answers (1)

Darkpingouin
Darkpingouin

Reputation: 196

This should work :

// reference to your data
PieData data = new PieData(labels, dataSet);

// this increases the values text size  
data.setValueTextSize(40f); // <- here

Upvotes: 2

Related Questions