更改Google可视化运动图表中气泡的颜色
我有办法定义 Google 可视化 API 提供的动态图表中气泡的颜色吗?我不想使用默认配色方案。
先感谢您。
I there a way where by I can define the colours of bubbles in a motion chart provided by Google visualization API ? I do not want to use the default colour scheme.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有找到一种内置的方法来做到这一点。但是,您可以做的是为每个气泡分配一个“颜色”变量。然后您可以将气泡的颜色设置为此变量。我发现对于 3 个气泡,将一个设置为 1,另一个设置为 1.5,第三个设置为 3 个项目效果相当好(在默认配色方案中,黄色项目的效果非常差)。这种方法使您对配色方案的控制有限。
I've not found an inbuilt way to do this. However, what you can do is assign each bubble a "colour" variable. Then you can set the colour of the bubbles to this variable. I have found that for 3 bubbles, setting one to 1, another to 1.5 and the third to 3 projects reasonable well (on the default colour scheme, yellow projects very poorly). This approach gives you limited control over the colour scheme.
现在已经是 2017 年了,我还没有找到合适的更新。所以这是我想出的解决方案。 HTH。
...对于源中的 r:
data.append(ra, rb, rc, rd, re)
It's 2017 and I have yet to find a good update for this. So here is the solution I came up with. HTH.
... for r in source:
data.append(r.a, r.b, r.c, r.d, r.e)