1

棒グラフのグーグル静的チャートの背景色を変更する必要があります。誰かが解決策を持っていますか?現在、色は白です[#ffffff]

https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello | World

4

2 に答える 2

1

次のようなパラメータを探しています

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
于 2012-12-14T12:00:01.167 に答える
0

これを 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 チャート ツールのドキュメント. そこにはさらに多くのカスタマイズオプションがあります。

于 2012-12-14T11:54:24.617 に答える