Dygraphs メモ
基本
Tutorialに書いてあることがすべて
- html
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/dygraph/1.1.1/dygraph-combined.js"></script>
- js
g2 = new Dygraph(
document.getElementById("graphdiv2"),
"temperatures.csv", // CSV 形式ならfileでなくてもOK
{} // options
);