gpt4 book ai didi

android - 显示/隐藏点标签 Androidplot

转载 作者:行者123 更新时间:2023-11-29 17:47:37 25 4
gpt4 key购买 nike

当我的图表获取大量数据时,点标签相互重叠,因此我想为用户提供一个选项,通过单击按钮将其关闭,但我在文档中找不到任何关于如何做这个。下面是我在创建图表时如何设置点标签。

BarFormatter series1Format = new BarFormatter(Color.rgb(51, 181, 229), Color.TRANSPARENT);'
PointLabelFormatter plf = new PointLabelFormatter();
plf.getTextPaint().setTextSize(18);
plf.getTextPaint().setColor(Color.BLACK);
series1Format.setPointLabelFormatter(plf);

最佳答案

您是否尝试过在 BarFormatter 实例中将 PointLabelFormatter 设置为 null?

series1format.setPointLabelFormatter(null);

然后要重新打开标签,只需使用您原来的方法将其添加回去即可:

series1Format.setPointLabelFormatter(plf);

关于android - 显示/隐藏点标签 Androidplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25374571/

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