我正在使用MPAndroidChart来显示图像中的PieChart,我想增加百分比值的大小,例如38%,14%等,但找不到任何方法。 最佳答案 这应该工作:// reference to your data PieData data = new PieData(labels, dataSet); // this increases the values text size data.setValueTextSize(40f); // <- here