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.
我在 android 中使用“achartengine”作为图表,因为我想要点Y-axisas0,0.5,1.0,1.5而不是0,1,2,3,4.
Y-axis
0,0.5,1.0,1.5
0,1,2,3,4
我能做些什么?
您可以调整使用的值,renderer.setYLabels()直到它显示您需要的值。
renderer.setYLabels()
或者您可以添加自定义标签:
renderer.addYTextLabel(0.5, "0.5");