2012-12-14 50 views

回答

1

你正在尋找一個參數像

chf=bg,s,ff0000 

enter image description here

https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello|World&bg=FF0000&chf=bg,s,ff0000 
+0

你搖滾。歡呼聲\ m / – user1617207

0

雖然你已經標記這是一個CSS/HTML的問題,通過對谷歌文檔閱讀後,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 chart tool documentation。那裏有更多的自定義選項。

+1

我創建的頁面在電子郵件中去。這是一封電子郵件通訊。地圖必須是靜態的。無法使用JavaScript。 – user1617207