Google嵌入API设置图表背景颜色



我正在尝试编辑图表的背景色

var sessions = {
        query: {
            dimensions: 'ga:date',
            metrics: 'ga:sessions'
        },
        chart: {
            type: 'LINE',
            options: {
                width: '100%',
                title: 'Sessions',
                titleTextStyle: {
                    color: '#0f55c4',
                    fontSize: '16',
                    bold: true
                }
            }
        }
    };

我尝试了以下所有组合,没有任何作用;

backgroundColor: 'red', (changed background colour not chart colour)
chartArea: {
        backgroundColor:'red'
    } (again background colour only)
chartArea: {
    backgroundColor: {
        fill: 'red'
    }
} (again background colour only)
chartArea: {
    fill: 'red'
} (doesn't work)

不确定我还能尝试什么,我尝试了我在文档中找到的所有东西,几个网站没有任何接缝来工作,而不仅仅是图表区域,都非常感谢任何帮助。p>谢谢。

根据文档,您可以更改Chartarea的背景颜色和背景色。

我能够使用以下选项更改这两种颜色:

    var options = {
    backgroundColor: '#ccc',
    chartArea: {
        backgroundColor:'#e5e5e5'
    }
};

小提琴。

可悲的是,我不熟悉您安排选择的方式,但我的猜测是,您应该将此选项放在

 options: {
                width: '100%',
.....
                chartArea: {
                     backgroundColor:'#e5e5e5'
                }
.......
};

我希望这对您有帮助!

相关内容

  • 没有找到相关文章

最新更新