我尝试了这段代码,但是我的饼图颜色仍然是蓝色..你可以建议吗?
var options = {
chart: {
backgroundColor: 'brown', // for the area outside the chartArea
chartArea: {
backgroundColor: 'green'
}
}
};
答案 0 :(得分:0)
chartArea
不是有效密钥...只需使用backgroundColor
。
var options = {
backgroundColor: 'brown',
chartArea: {
backgroundColor: 'green'
}
}