gpt4 book ai didi

android - MPAndroidChart PieChart 如何设置标签文字?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:09:15 26 4
gpt4 key购买 nike

得到如下代码:

    Legend legend = mChart.getLegend();
legend.setLabels(new String[]{"aaaaa", "bbbbb", "ccccc"});

这个设置没有生效 还有其他方法可以设置文本吗?

最佳答案

我在 v3.0.0 中找不到方法 setCustom(int[] color, String[] labels)。只有 setCustom(LegendEntry[]) 您必须为其传递 LegendEntry 对象。

 List<LegendEntry> entries = new ArrayList<>();

for (int i = 0; i < titleList.size(); i++) {
LegendEntry entry = new LegendEntry();
entry.formColor = colorList.get(i);
entry.label = titleList.get(i);
entries.add(entry);
}

legend.setCustom(entries);

关于android - MPAndroidChart PieChart 如何设置标签文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40645322/

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