在我的Android应用程序中,我实现了一个MPAndroidChart PieChart。我根据自己的要求得到了所有东西。但我无法阻止饼图内的透明色。我该如何解决这个问题?
这是我的示例代码
mChart.setDrawHoleEnabled(true);
mChart.setHoleColorTransparent(true);
mChart.setHoleRadius(50f);
mChart.setTransparentCircleRadius(10);
// enable rotation of the chart by touch
mChart.setRotationAngle(0);
mChart.setRotationEnabled(false);
mChart.setDrawCenterText(true);
答案 0 :(得分:2)
只需注释掉这一行:
//mChart.setTransparentCircleRadius(10);
答案 1 :(得分:1)
在 colors.xml
中定义新的颜色<color name="Transparent">#00000000</color>
然后将透明色设置为饼图孔:
pieChart.setHoleColor(getColor(R.color.Transparent));