首先对不起我的英语,但我是意大利人。
现在......我正在毫无问题地使用动态图表和地理图表,但气泡图似乎有他的方式做事。
我在我的页面上使用了几个图表,有些是隐藏的(显示:无),但当我隐藏气泡图时,当我在代码 900x600 上书写时,他的尺寸变化为 400x200。
这是我完美地与其他图表一起使用的代码:
<div style="width: 100%; clear: left; display: none" id="religioni-frame">
<div style="width: 50%; float: left; text-align: center">
<div id="religione-bubble" style="width: 650px; height: 360px;margin: 0 auto"></div>
</div>
<div style="width: 50%; float: left; text-align: center;">
<div id="religioni" style="width: 650px; height: 360px; margin: 0 auto"></div>
</div>
</div>
但是当我在气泡图上使用它时,一切都崩溃了……我得到了一个 400x200 的邮票……
<div style="height: 900px;display: none" id="bubble-frame">
<div id="chart_div" style="width: 900px; height: 400px;"></div>
</div>
如果我在没有显示的情况下使用它:无它需要正确的尺寸。
<div style="height: 900px;display: inline" id="bubble-frame">
<div id="chart_div" style="width: 900px; height: 400px;"></div>
</div>
这是一个测试页面https://dl.dropbox.com/u/29200489/IPC/untitled/test.html 解决方案?