2

美好的一天,我使用颜色框在新窗口中显示数据。一切都很好,但我必须显示动态创建的数据(带有数据的表格),然后绘制图表。决定使用浮点图 jQuery 库来绘制数据。它在firefox和ie中进行了测试。图不错。但是当颜色框窗口滚动时,图形保持在同一位置,其他内容(表格)正在滚动。在 Firefox 中滚动效果很好。

彩盒初始化:

$.colorbox({ maxWidth:"95%", 
             maxHeight:"80%", 
             scrolling:true, 
             html: htmlData,  
             onComplete: function(){$.graphCreate();}});

htmlData - <div id="placeholder" style="width:600px;height:300px;"></div>
<table>......</table>

然后当颜色框完成时 - $.graphCreate();

$.plot($("#placeholder"),data, {
    series: {
        stack: stack,
    },
    xaxis: {
        ticks: [[1, "Fri, Mar 02 2012"], [2, "Sat, Mar 03 2012"], [3, "Sun, Mar 04 2012"], [4, "Mon, Mar 05 2012"]],
    }
});
4

0 回答 0