0

我想使用谷歌强度图并找到了这个,https://developers.google.com/chart/interactive/docs/gallery/intensitymap#Configuration_Options

但我无法弄清楚我应该在哪里设置这些选项(在 javascript 代码中)。

我试过chart.height = 200了,但这不起作用。

4

1 回答 1

1

在这里找到它:https ://google-developers.appspot.com/chart/interactive/docs/quick_start

第二个参数IntensityMap.draw是选项。

var options = {height: 200};
chart.draw(data, options);

会做。

于 2012-04-06T06:44:40.443 回答