title tbd
desc tbd
by Toni
HTML
<script src="http://dygraphs.com/dygraph-combined.js"></script>
<div id="div_g"></div>
CSS
#div_g { position: absolute; left: 200px; right: 10px; top: 100px; bottom: 10px; }
JavaScript
$(document).ready(function () {
g = new Dygraph(
document.getElementById("div_g"),
[[1, 2], [2, 4]], {
valueRange: [0, 4]
}
);
}
);