我需要更改条形图的谷歌静态图表的背景颜色。任何人有任何解决方案?现在颜色是白色[#ffffff]
https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello|World
我需要更改条形图的谷歌静态图表的背景颜色。任何人有任何解决方案?现在颜色是白色[#ffffff]
https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello|World
您正在寻找类似的参数
chf=bg,s,ff0000
https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello|World&bg=FF0000&chf=bg,s,ff0000
尽管您已将此标记为 CSS/HTML 问题,但在阅读了 Google 上的文档后,javascript 可能会更好地实现这一点。在您的 javascript 代码中,包括以下内容:
var options = {
//The background color for the main area of the chart. Can be either a simple HTML color string, for example: 'red' or '#00cc00', or an object with the following properties.
backgroundColor: 'black',
//The color of the chart border, as an HTML color string
backgroundColor.stroke: 'blue'
//The chart fill color, as an HTML color string
backgroundColor.fill: 'yellow'
};
删除不需要的东西。我包括了一些额外的自定义选项。
来源:谷歌图表工具文档。那里有更多自定义选项可用。