MPAndroidChart – 从v2开始删除顶部边框轴

MPAndroidChart – 从v2开始删除顶部边框轴,第1张

概述我将MP AndroidChart从v1.7升级到v2并且不得不改变一些事情. 其中一个新事物是,我现在似乎有一个最大值的顶部边框. 我的代码试图隐藏所有边框是这样的: LineChart graph = (LineChart) connectionView.findViewById(R.id.graph); graph.setDrawGridBackground(false); 我将MP AndroidChart从v1.7升级到v2并且不得不改变一些事情.
其中一个新事物是,我现在似乎有一个最大值的顶部边框.

我的代码试图隐藏所有边框是这样的:

lineChart graph = (lineChart) connectionVIEw.findVIEwByID(R.ID.graph);    graph.setDrawGrIDBackground(false);    graph.setDrawborders(false);    graph.setDescription("");    YAxis yr = graph.getAxisRight();    yr.setEnabled(false);    yr.setDrawAxisline(false);    YAxis yl = graph.getAxisleft();    yl.setValueFormatter(formatIErer);    yl.setShowOnlyMinMax(true);    yl.setDrawAxisline(false);    XAxis xl = graph.getXAxis();    xl.setposition(XAxis.XAxisposition.BottOM);    xl.setDrawGrIDlines(false);    xl.setDrawAxisline(false);    yl.setAxisMaxValue((float) graPHPoint_max);

仍然 – 我有一条线显示最大值.我想在YAxis上有值,但没有水平轴线/边框.我无法找到任何隐藏它的命令.

解决方法 您是否尝试在YAxis上调用setDrawAxisline(…)或setDrawGrIDlines(…)?

这是full axis documentation.

这是documentation for YAxis only.

总结

以上是内存溢出为你收集整理的MPAndroidChart – 从v2开始删除顶部边框/轴全部内容,希望文章能够帮你解决MPAndroidChart – 从v2开始删除顶部边框/轴所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1130146.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存