其中一个新事物是,我现在似乎有一个最大值的顶部边框.
我的代码试图隐藏所有边框是这样的:
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开始删除顶部边框/轴所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)