我正在尝试将一系列值设置为特定纯色的Google geochart。
实施例: 饼干数量 - 0-10:红色 11-20:黄色 21-30:绿色
我正在尝试使用colorAxis.values对象来执行此操作:
var options = {
colorAxis: {values:[0, 10], colors:['red', 'red'],
values:[11, 20], colors:['yellow', 'yellow'],
values:[21, 30], colors:['green', 'green']}
};
有可能做我在这里尝试的事情吗?
答案 0 :(得分:1)
使用单个values
数组和单个colors
数组:
colorAxis: {
values:[0, 10, 11, 20, 21, 30],
colors:['red', 'red', 'yellow', 'yellow', 'green', 'green']
}