我需要更改條形圖的谷歌靜態圖表的背景顏色。任何人都有解決方案? 眼下的顏色是白色[#FFFFFF]更改靜態谷歌圖[條形圖] background-color
https://chart.googleapis.com/chart?cht=bhs&chd=t:60,40&chs=250x100&chl=Hello|World
我需要更改條形圖的谷歌靜態圖表的背景顏色。任何人都有解決方案? 眼下的顏色是白色[#FFFFFF]更改靜態谷歌圖[條形圖] background-color
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的問題,通過對谷歌文檔閱讀後,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。那裏有更多的自定義選項。
我創建的頁面在電子郵件中去。這是一封電子郵件通訊。地圖必須是靜態的。無法使用JavaScript。 – user1617207
你搖滾。歡呼聲\ m / – user1617207