如何移除 Legend of BarChart

How to remove Legend of BarChart

如何从 BarChat 中删除 Legend。 我有一些代码。

float[] yData = { (float)Math.abs(item._Lent),(float) Math.abs( item._Barrow )};
    String[] xData = { "salary", "Spends" };
    ArrayList<BarEntry> entries = new ArrayList<>();
    for (int i = 0; i < yData.length; i++)
        entries.add(new BarEntry(yData[i], i));
    BarDataSet dataset = new BarDataSet(entries, "");
    ArrayList<String> labels = new ArrayList<String>();
    for (int i = 0; i < xData.length; i++)
        labels.add(xData[i]);

    BarData data = new BarData(labels, dataset);
    mChart.setData(data); // set the data and list of lables into chart
    BarChart barchart = mChart;
    Legend legend = barchart.getLegend();
    legend.setEnabled(false);

    YAxis topAxis = barchart.getAxisLeft();
    topAxis.setDrawLabels(false);

    YAxis bottomAxis = barchart.getAxisRight();
    bottomAxis.setDrawLabels(false);

    XAxis rightAxis = barchart.getXAxis();
    rightAxis.setDrawLabels(false);
    bottomAxis.setDrawLabels(false);

`

此代码无法正常工作。我给了我以下输出。

output

您需要将图例可见设置为 false,如下所示:barchart.setLegendVisible(false); - 因此您的代码将如下所示:

//rest of your code
    ....
BarData data = new BarData(labels, dataset);
mChart.setData(data); // set the data and list of lables into chart
BarChart barchart = mChart;
barchart.setLegendVisible(false);
    ...
//more of your code...

试一试,如果有帮助请告诉我。您还可以查看这个密切相关问题的选定答案 here

隐藏 setDescription("") 的描述:

barchart.setDescription("");