MP Android饼图图例未显示正确的项目和颜色

时间:2018-08-07 06:42:59

标签: android mpandroidchart

我有一个饼图,并使用以下代码启用了图例:

pieChart.getLegend().setEnabled(true);
Legend l = pieChart.getLegend();
l.setVerticalAlignment(Legend.LegendVerticalAlignment.BOTTOM);
l.setHorizontalAlignment(Legend.LegendHorizontalAlignment.LEFT);
l.setOrientation(Legend.LegendOrientation.HORIZONTAL);
l.setDrawInside(false);
l.setXEntrySpace(7f);
l.setYEntrySpace(0f);
l.setYOffset(0f);

但是图例仅显示颜色不正确的一项。饼图本身可以正常工作:

Screenshot of the pie chart and the wrong legend

如何修复我的图例?

0 个答案:

没有答案