我想使用谷歌强度图并找到了这个,https://developers.google.com/chart/interactive/docs/gallery/intensitymap#Configuration_Options
但我无法弄清楚我应该在哪里设置这些选项(在 javascript 代码中)。
我试过chart.height = 200
了,但这不起作用。
我想使用谷歌强度图并找到了这个,https://developers.google.com/chart/interactive/docs/gallery/intensitymap#Configuration_Options
但我无法弄清楚我应该在哪里设置这些选项(在 javascript 代码中)。
我试过chart.height = 200
了,但这不起作用。
在这里找到它:https ://google-developers.appspot.com/chart/interactive/docs/quick_start
第二个参数IntensityMap.draw
是选项。
var options = {height: 200};
chart.draw(data, options);
会做。