gpt4 book ai didi

android - 如何移除 Legend of BarChart

转载 作者:搜寻专家 更新时间:2023-11-01 08:33:39 25 4
gpt4 key购买 nike

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

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

最佳答案

使用 setDescription("") 隐藏描述:

barchart.setDescription("");

关于android - 如何移除 Legend of BarChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38535944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com