Real-time graphing: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 40: Line 40:
     }});
     }});
};
};
 
setInterval(fetchData,1000);  // Start the periodical update
Start = function() {
    periodical = setInterval(fetchData,1000);  // Start the periodical update
};
 
Start();
</jsxgraph>
</jsxgraph>


Line 92: Line 87:
     }});
     }});
};
};
 
setInterval(fetchData,1000);  // Start the periodical update
Start = function() {
    periodical = setInterval(fetchData,1000);  // Start the periodical update
};
 
Start();
</source>
</source>
===The PHP code of fakesensor.php===
===The PHP code of fakesensor.php===

Revision as of 09:06, 18 December 2009

The underlying JavaScript code

  <script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/prototype.js"></script>
  <style>
    #jxgbox {
       background-color:black;
    }
  </style>
var brd, g, 
    xdata = [], ydata = [],
    turt,i;

brd = JXG.JSXGraph.initBoard('jxgbox', {axis:true, boundingbox:[0,20,30,-2]});

turt = brd.createElement('turtle',[],{strokecolor:'#999999'});
turt.hideTurtle().right(90);
for (i=5;i<=15;i+=5) {
    turt.penUp().moveTo([0,i]).penDown().forward(30);
}


fetchData = function() {
    new Ajax.Request('/ajax/fakesensor.php', {
        onComplete: function(transport) {
            var t, a;
            if (200 == transport.status) {
                t = transport.responseText;
                a = parseFloat(t);
                if (xdata.length<30) {          
                    xdata.push(xdata.length); // add data to the x-coordinates, if the right border has not been reached, yet
                } else {
                    ydata.splice(0,1);        // remove the oldest entry of the y-coordinates, to make the graph move.
                }
                ydata.push(a);
                if (!g) {                   // If the curve does not exist yet, create it.
                    g = brd.createElement('curve', [xdata,ydata],{strokeWidth:3, strokeColor:'yellow'}); 
                } 
                brd.update();
            };
    }});
};
setInterval(fetchData,1000);  // Start the periodical update

The PHP code of fakesensor.php

<?php
   echo mt_rand(0,20);
?>