我正在谷歌图表中建立一个表格。我想根据单元格的数值更改单元格的颜色。我假设我将执行类似遍历所有单元格并在此处调用文档中指定的 colorFormat 对象: https ://developers.google.com/chart/interactive/docs/reference#colorformatter
问题是没有关于如何实现此方法的示例。
有谁知道一个例子或如何实现 colorFormat 来改变单元格的颜色?
我正在谷歌图表中建立一个表格。我想根据单元格的数值更改单元格的颜色。我假设我将执行类似遍历所有单元格并在此处调用文档中指定的 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