我使用:
在studentchart div中使用flot绘制折线图$.plot(jQuery("#studentavgchart"), DATA, options);
Graph将使用class OneTwo在div之外绘制。如果我可以删除div studentchart的样式,则会显示javascript错误。 我需要在父div中绘制图形,即;在oneTwo
<div class="oneTwo">
<div class="widget" >
<div class="header">
<span>
<span class="ico gray info2"></span>Total Class No
</span>
</div>
<div class="content">
<div id="studentchart" style="width:100%;height:300px;"></div>
</div>
</div>
</div>
答案 0 :(得分:19)
我看到你的情节函数调用正在使用“studentavgchart”而你的div的id为“studentchart”
我也遇到了这个问题,发现我的Plot div需要一个指定高度的样式或类。以像素或%。
希望有所帮助。