安裝或設定
使用以下內容建立名為 hello.html
的檔案:
<!doctype html>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/dygraph/2.0.0/dygraph.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dygraph/2.0.0/dygraph.css">
</head>
<body>
<div id="chart-div"></div>
<script type="text/javascript">
g = new Dygraph(
document.getElementById('chart-div'),
[
[0, 0, 0],
[1, 1, 1],
[2, 2, 4],
[3, 3, 9]
], {
labels: ['X', 'Apples', 'Oranges']
});
</script>
</body>
</html>
這會從 CDN 載入 dygraphs JavaScript 和 CSS。
<script>
標記中的位建立圖表。它指定了一個包含兩個系列的資料集:蘋果和橙子,以及 x 軸。
有關更多資訊,請參閱 dygraphs 教程