0
我想使用谷歌地圖的強度,發現了這個,https://developers.google.com/chart/interactive/docs/gallery/intensitymap#Configuration_Options在哪裏設置配置選項,谷歌visulization
但我想不出我應該設置這些選項(JavaScript代碼)在哪裏。我試過chart.height = 200
,這是行不通的。
我想使用谷歌地圖的強度,發現了這個,https://developers.google.com/chart/interactive/docs/gallery/intensitymap#Configuration_Options在哪裏設置配置選項,谷歌visulization
但我想不出我應該設置這些選項(JavaScript代碼)在哪裏。我試過chart.height = 200
,這是行不通的。
在這裏找到:https://google-developers.appspot.com/chart/interactive/docs/quick_start
的IntensityMap.draw
第二個參數是選項。
var options = {height: 200};
chart.draw(data, options);
會做。