如何删除饼图上的标签

时间:2017-08-20 18:11:28

标签: java android

我使用PhilJay MPAndroidChart创建饼图,但我不希望文本和图形写在饼图上它应该是饼图旁边的颜色描述与图。现在它显示在没有数字的下行。 enter image description here

2 个答案:

答案 0 :(得分:2)

要删除x值,请使用pieChart.setDrawSliceText(false)

要删除y值,请使用pieChart.getData().setDrawValues(false)

答案 1 :(得分:0)

pieChart.setDrawSliceText(false)已过时,请改用pieChart.setDrawEntryLabels(false)