本文介绍了如何使禁用,以显示AChartEngine缩放窗格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能帮我约AChartEngine。在这里,我首先需要的是不显示的图表缩放图标,也没有表现出X,Y标签。但是,我找不到任何解决办法

Can anyone help me about AChartEngine. Here the first thing I need is not to show zoom icon with the chart and also not to show x,y labels. But I could not find any solution

推荐答案

您可以使用 XYMultipleSeriesRenderer 方法
启用或禁用缩放和平移这个样子。

You can use XYMultipleSeriesRenderer methodsto enable or disable zooming and pan like this.

renderer.setPanEnabled(false, false);
renderer.setZoomRate(0.2f);
renderer.setZoomEnabled(false, false);

和有关取出X,Y的标签,我想你不能删除标签。解决方法是传递一个空字符串(即)。
有关进一步的参考,你可以下载自己的,在 achartengine-0.6的3.0 javadocs.zip

and regarding removing the X, Y labels, I think you cannot remove labels. Workaround is to pass an empty String (i.e "").For further reference you can download their Documentation, under achartengine-0.6.0-javadocs.zip.

这篇关于如何使禁用,以显示AChartEngine缩放窗格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 15:46