安装或设置

使用以下内容创建名为 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 教程