棒グラフのグーグル静的チャートの背景色を変更する必要があります。誰かが解決策を持っていますか?現在、色は白です[#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'
};
不要なものを削除します。いくつかの追加のカスタマイズ オプションを含めました。
出典: Google チャート ツールのドキュメント. そこにはさらに多くのカスタマイズオプションがあります。