使用flot jquery的实时图表

前端之家收集整理的这篇文章主要介绍了使用flot jquery的实时图表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一种使用Flot(Jquery)图表显示VM当前cpu使用率的方法.

从现在开始,我可以绘制简单的线条,但不知道如何在新数据进入时将图形移动到左侧.

  1. <script type="text/javascript">
  2. var d1 = [ [0,0] ];
  3. options = {
  4. lines: {
  5. show: true
  6. },points: {
  7. show: true
  8. },xaxis: {
  9. tickDecimals: 0,tickSize: 1
  10. },grid: {
  11. backgroundColor: {
  12. colors: ["#fff","#eee"]
  13. }
  14. }
  15. };
  16.  
  17. function init() {
  18. $.plot($("#placeholder"),d1,options);
  19. } /* init Function */
  20.  
  21. function update(){
  22. for (var i = 0; i < 14; i += 0.5) {
  23. d1.push([i,Math.floor(Math.random()*11)]);
  24. }
  25. $.plot($("#placeholder"),[ d1 ],options);
  26. }
  27. init();
  28. $("input.dataUpdate").click(function () {
  29. update();
  30. });
  31. </script>

任何想法或可能是另一个插件可以做到这一点?

编辑:

我需要翻译关联数组:

  1. [ [1,(random1)],[2,(random2),[3,(random2) ]

  1. [ [2,(random2)],(random3),[4,(random4) ] (new element 4)

不知道如何实现这一目标.

解决方法

我正在查看他们的API并且他们有一个’setData’函数,看起来它允许您更新现有的图表数据.

http://flot.googlecode.com/svn/trunk/API.txt

[更新]
在其他浏览器中查看上面的示例后,从头开始重建绘图时的刷新率有点慢.我注意到更新之间出现了不希望的闪烁.这是一个更好的解决方案:

  1. var xVal = 0;
  2. var data = [[],[]];
  3. var plot = $.plot( $("#chart4"),data);
  4.  
  5. function getData(){
  6. // This could be an ajax call back.
  7. var yVal1 = Math.floor(Math.random()*11);
  8. var yVal2 = Math.floor(Math.random()*11);
  9. var datum1 = [xVal,yVal1];
  10. var datum2 = [xVal,yVal2];
  11. data[0].push(datum1);
  12. data[1].push(datum2);
  13. if(data[0].length>10){
  14. // only allow ten points
  15. data[0] = data[0].splice(1);
  16. data[1] = data[1].splice(1);
  17. }
  18. xVal++;
  19. plot.setData(data);
  20. plot.setupGrid();
  21. plot.draw();
  22. }
  23.  
  24. setInterval(getData,1000);

我还整理了一篇关于flot的博客文章,更详细地描述了这一点:

http://blog.bobcravens.com/2011/01/web-charts-using-jquery-flot/

短发

猜你在找的jQuery相关文章