Вход Регистрация
Файл: Main Website Files/assets/bower_components/morrisjs/examples/updating.html
Строк: 31
<?php
<!doctype html>
<
head>
  <
script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
  <
script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.2/raphael-min.js"></script>
  <
script src="../morris.js"></script>
  <
script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.js"></script>
  <
script src="lib/example.js"></script>
  <
link rel="stylesheet" href="lib/example.css">
  <
link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.css">
  <
link rel="stylesheet" href="../morris.css">
</
head>
<
body>
<
h1>Updating data</h1>
<
div id="graph"></div>
<
div id="reloadStatus">
<
pre id="code" class="prettyprint linenums">

var 
nReloads 0;
function 
data(offset) {
  var 
ret = [];
  for (var 
0<= 360+= 10) {
    var 
= (offset x) % 360;
    
ret.push({
      
xx,
      
yMath.sin(Math.PI 180).toFixed(4),
      
zMath.cos(Math.PI 180).toFixed(4)
    });
  }
  return 
ret;
}
var 
graph Morris.Line({
    
element'graph',
    
datadata(0),
    
xkey'x',
    
ykeys: ['y''z'],
    
labels: ['sin()''cos()'],
    
parseTimefalse,
    
ymin: -1.0,
    
ymax1.0,
    
hideHovertrue
});
function 
update() {
  
nReloads++;
  
graph.setData(data(nReloads));
  $(
'#reloadStatus').text(nReloads ' reloads');
}
setInterval(update100);
</
pre>
</
body>
?>
Онлайн: 1
Реклама