MPAndroidChart删除图例

时间:2015-04-02 20:59:35

标签: android mpandroidchart

我正在使用MPAndroidChart库,我想删除PieChart右上角的值,我该怎么做?

4 个答案:

答案 0 :(得分:23)

您所谈论的价值属于Legend

要禁用它们(阻止它们显示),请调用

Legend l = chart.getLegend();
l.setEnabled(false);

答案 1 :(得分:0)

尝试pieChart.setDrawSliceText(false)

答案 2 :(得分:0)

你可以像这样设置

linechart.setData();
...
linechert.getLegend().setEnable(false);

不见传说应该在setData()

的后面

答案 3 :(得分:0)

将此代码添加到xml文件中:

target

将此内容写入.java文件:

<com.github.mikephil.charting.charts.PieChart
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/pie_chart">
</com.github.mikephil.charting.charts.PieChart>