android - 更改achartengine图形背景颜色

发布于 2024-12-04 23:05:30 字数 102 浏览 1 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

莳間冲淡了誓言ζ 2024-12-11 23:05:30

GraphicalView.javaonDraw() 方法中添加这一行

mRenderer.setApplyBackgroundColor(true);
mRenderer.setBackgroundColor(Color.RED);

它将起作用

in GraphicalView.java 's onDraw() method add this line

mRenderer.setApplyBackgroundColor(true);
mRenderer.setBackgroundColor(Color.RED);

it will work

忆梦 2024-12-11 23:05:30

你可以添加这个并享受它!

mRenderer.setMarginsColor(Color.RED);

you can add this and enjoy it!

mRenderer.setMarginsColor(Color.RED);
冷夜 2024-12-11 23:05:30

响应是正确的,但您不必在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文