MPAndroidChart PieChart how to change the center text to display the different color and font size

后端 未结 4 1534
轮回少年
轮回少年 2021-02-11 07:36

Currently I use the MPAndroidChart from GITHUB and draw the piechart to display the two line text, each line has different color and different font size,I check the source codes

4条回答
  •  孤独总比滥情好
    2021-02-11 08:04

    PieData data = new PieData(dataSet);  
    pieChart.setCenterText("Total Questions 5" );        
    pieChart.setCenterTextSize(14f);
    pieChart.setCenterTextColor(Color.BLUE);
    

提交回复
热议问题