Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我对图表应用程序很陌生。我使用 aChartEngine 为我的 android 应用程序创建了双折线图。我无法在图表中为 y 轴设置标签。
我有这样的图表......
我该怎么做有人可以帮助我吗?提前致谢。
这将帮助您:
// hide the default labels mrenderer.setYLabels(0); // set the custom labels mrenderer.addYTextLabel(0, "$0"); mrenderer.addYTextLabel(20000, "$20K"); ... // set the visible range mrenderer.setYAxisMin(0); mrenderer.setYAxisMax(140000);