android - 更改achartengine图形背景颜色
使用 achartengine 时有没有办法更改图形意图的背景颜色? 目前,它以黑色背景显示所有图表。 我查看了 GraphicalActivity.java 但找不到解决方案。 有人吗?
Is there a way to change the background color of the graph intent when using achartengine?
Currently, it displays all the graphs with a black background.
I looked into GraphicalActivity.java but couldnt find a solution.
Anyone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在
GraphicalView.java
的onDraw()
方法中添加这一行它将起作用
in
GraphicalView.java
'sonDraw()
method add this lineit will work
你可以添加这个并享受它!
you can add this and enjoy it!
响应是正确的,但您不必在 GraphicalView.java 中执行此操作。
您应该在自己的类中为图表构建渲染器来执行此操作。
The response is correct, but you don't have to do that in the GraphicalView.java.
You should do that in your own class building the renderer for the chart.