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 应用程序开发的新手。我正在使用图表引擎动态生成图表,我的问题是我们可以在 x 轴上放置自定义名称,即我们可以放置国家名称而不是值,例如 10、20、30 等
当然可以,您必须设置自定义 x 轴标签:
renderer.addXTextLabel(x, text);
删除默认值调用
renderer.setXLabels(0); renderer.setYLabels(0);
确保您使用的是 ACE 1.0.0。