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 轴显示在图表上。我试图在这里修改“多温度图表”演示中所做的事情
我需要更改DateTime的 X 轴。代码示例中需要更改的内容以使用日期时间 X 轴。
谢谢,罗德里戈
这里最简单的方法是在 X 轴上放置Date时间戳(long值)。此外,您必须添加自定义标签:
Date
long
renderer.addXTextLabel(dateTimestampValue, "custom label");
你会想要隐藏默认标签:
renderer.setXLabels(0);