/home/techb158/workloadmatch.com/bower_components/morris.js/examples
NameSizeModeActions
lib/-0777rm
area-as-line.html10250777editdlrm
area.html10980777editdlrm
bar-colors.html12530777editdlrm
bar-no-axes.html10010777editdlrm
bar.html10420777editdlrm
days.html15530777editdlrm
decimal-custom-hover.html11920777editdlrm
diagonal-xlabels-bar.html15860777editdlrm
diagonal-xlabels.html15750777editdlrm
donut-colors.html11170777editdlrm
donut-formatter.html10640777editdlrm
donut.html9970777editdlrm
dst.html10330777editdlrm
events.html25090777editdlrm
goals.html10060777editdlrm
months-no-smooth.html15460777editdlrm
negative.html11860777editdlrm
no-grid.html15680777editdlrm
non-continuous.html17780777editdlrm
non-date.html12160777editdlrm
quarters.html25310777editdlrm
resize.html16440777editdlrm
stacked_bars.html10110777editdlrm
timestamps.html16250777editdlrm
updating.html13690777editdlrm
weeks.html24790777editdlrm
years.html14890777editdlrm
_template.html7080777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/morris.js/examples/updating.html (1369B)

Updating data


var nReloads = 0;
function data(offset) {
  var ret = [];
  for (var x = 0; x <= 360; x += 10) {
    var v = (offset + x) % 360;
    ret.push({
      x: x,
      y: Math.sin(Math.PI * v / 180).toFixed(4),
      z: Math.cos(Math.PI * v / 180).toFixed(4)
    });
  }
  return ret;
}
var graph = Morris.Line({
    element: 'graph',
    data: data(0),
    xkey: 'x',
    ykeys: ['y', 'z'],
    labels: ['sin()', 'cos()'],
    parseTime: false,
    ymin: -1.0,
    ymax: 1.0,
    hideHover: true
});
function update() {
  nReloads++;
  graph.setData(data(5 * nReloads));
  $('#reloadStatus').text(nReloads + ' reloads');
}
setInterval(update, 100);