JS Google图表无法更改饼图背景颜色

时间:2017-06-18 15:54:48

标签: javascript charts google-visualization

我尝试了这段代码,但是我的饼图颜色仍然是蓝色..你可以建议吗?

  var options = {

  chart: {
  backgroundColor: 'brown', // for the area outside the chartArea
  chartArea: {
  backgroundColor: 'green'
}
  }

};

1 个答案:

答案 0 :(得分:0)

chartArea不是有效密钥...只需使用backgroundColor

var options = {
    backgroundColor: 'brown',
    chartArea: {
        backgroundColor: 'green'
    }
}