Reputation: 41
I don't know how to fix this problem.
pieChart.setHoleRadius(90);
pieChart.setCenterTextSize(18);
pieChart.setCenterText(getResouces().getString(R.string.test)+"\n\n"+minStr);
Upvotes: 0
Views: 180
Reputation: 5628
pieChart.setCenterText("\n"+getResouces().getString(R.string.test)+"\n\n"+minStr);
Upvotes: 0
Reputation: 5339
Try to change the text size using :
mData.setValueTextSize(16f);
Upvotes: 1