5

我在 studentchart div 中使用 flot 绘制了一个折线图:

$.plot(jQuery("#studentavgchart"), DATA, options);  

Graph 将在类 oneTwo 的 div 之外绘制。如果我可以删除 div studentchart 的样式,它会显示 javascript 错误。我需要在父 div 中绘制图形,即;在一个两个

<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> 
4

1 回答 1

19

我看到您的绘图函数调用正在使用“studentavgchart”,而您的 div 的 id 为“studentchart”

我也遇到了这个问题,发现我的 Plot div 需要一个样式或一个指定高度的类。以像素或百分比为单位。

希望有帮助。

于 2013-02-14T17:09:58.593 回答