HighCharts + reveal.js图表​​大小

时间:2015-07-06 23:25:47

标签: javascript jquery html highcharts reveal.js

我在reveal.js演示文稿中提供了许多图表,但我遇到了一个问题,我的一些图表随机调整了它们的大小,我需要刷新页面以使其再次恢复正常大小。这是代码

<section>
    <center>
        <div id="chart1" style="min-width: 465px; height: 600px; max-width: 900px;"></div>
    </center>
    </section>
<section>
<center>
        <div id="chart2" style="min-width: 465px; height: 600px; max-width: 900px;"></div>
</center>

我不得不以其他方式添加<center></center>,有时图表不显示在幻灯片的中心,如果我也刷新页面,则图表居中。我加入了一些截图。 中心的问题:

Chart not at the center After Refresh 但如果我提出<center></center>

,我就不会遇到问题

大小问题: chart with a weird size chart after refresh

如果你们能帮助我找到解决办法,或者你知道发生了什么事。

1 个答案:

答案 0 :(得分:2)

<section>
    <center>
       <div id="chart1" style="height: 600px; width: 900px;"></div>
    </center>
</section>

解决问题。