Advertisement
Guest User

Untitled

a guest
Nov 9th, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   csi_timer.tick('draw');
  2.   window.jstiming.report(csi_timer);  
  3.  
  4.   setInterval(function() {
  5.     data.setValue(0, 1, 75);
  6.     chart.draw(data, options);
  7.   }, 1000);
  8.   setInterval(function() {
  9.     data.setValue(1, 1, 40 + Math.round(60 * Math.random()));
  10.     chart.draw(data, options);
  11.   }, 1000);
  12.   setInterval(function() {
  13.     var refreshId = setInterval ( function() { $('#code').load("cpu.php"); }, 1000 );
  14.     data.setValue(2, 1, refreshId);
  15.     chart.draw(data, options);
  16.   }, 1000);
  17. }
  18.  
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement