gpt4 book ai didi

javascript - 如何更改谷歌可视化图表中单元格的颜色

转载 作者:行者123 更新时间:2023-11-29 20:03:11 24 4
gpt4 key购买 nike

我正在 Google 图表中构建表格。我想根据单元格的数值更改单元格的颜色。我假设我会做一些事情,比如遍历所有单元格,并在此处调用文档中指定的 colorFormat 对象:https://developers.google.com/chart/interactive/docs/reference#colorformatter

问题是没有具体的例子来说明如何实现这个方法。

有谁知道示例或如何实现 colorFormat 来更改单元格的颜色?

最佳答案

https://developers.google.com/chart/interactive/docs/reference#colorformatter - 你有没有向下滚动?

var formatter = new google.visualization.ColorFormat();
formatter.addRange(-20000, 0, 'white', 'orange');
formatter.addRange(20000, null, 'red', '#33ff33');
formatter.format(data, 1); // Apply formatter to second column

关于javascript - 如何更改谷歌可视化图表中单元格的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13295058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com