我基本上想在下方将我的PieChart的标签作为“传奇”,并在图表中包含。我该怎么做?还有一种方法可以消除值中的deciaml数字吗?

谢谢

这是我当前的配置。我也想在图形内部获得“脚”或“静止”(好吧,不是在图形内部还是在图形外部)

Current Graph

最佳答案

通过以下方式创建条目:

ArrayList<PieEntry> pieEntries = new ArrayList<PieEntry>();
pieEntries.add(new PieEntry(floatValue, StringLabel));


之后,您需要执行以下操作以显示值:

pieDataSet.setDrawValues(true);

09-27 01:38