作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 Android 应用程序中制作了一个饼图,中间有一个白色的 cerce 我试图删除它,但我无法 t even the
piechart.setCentralCirculaire` 在我的代码中不起作用。反正我能做到吗谢谢。
pieChart=(PieChart)findViewById(R.id.Piechart);
pieChart.setRotationEnabled(true);
addDataSet();
private void addDataSet(){
Log.d(TAG, "addDataSet: ");
ArrayList<PieEntry> yEntrys=new ArrayList<>();
yEntrys.add(new PieEntry(15.0f, "LOW"));
yEntrys.add(new PieEntry(50.0f,"Normal"));
yEntrys.add(new PieEntry(25.0f,"hyper"));
PieDataSet pieDataSet= new PieDataSet(yEntrys,"Employee Global Activity");
pieDataSet.setSliceSpace(2);
pieDataSet.setValueTextSize(12);
ArrayList<Integer> colors =new ArrayList<>();
colors.add(Color.RED);
colors.add(Color.BLUE);
colors.add(Color.GREEN);
pieDataSet.setColors(colors);
PieData pieData =new PieData(pieDataSet);
pieChart.setData(pieData);
pieChart.invalidate();
}
最佳答案
piechart.setDrawHoleEnabled(false);
关于android - 如何去除饼图中的中心白圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42415386/
我是一名优秀的程序员,十分优秀!