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”作为时间表,我想将 y 轴上的数据从 1、2、3 更改为 0.5、1.0、1.5 等谢谢
您可以设置自己的自定义标签。
renderer.addYTextLabel(1, "0.5");
要禁用默认标签,请执行以下操作:
renderer.setYLabels(0);