Dygraph - 窗口大小和lin / log选项

时间:2013-12-02 17:20:51

标签: javascript html dygraphs

我正在尝试使我的Dygraphs图可调整大小,并向页面添加一个按钮,用户可以选择图形是线性还是对数。这些示例都在Dygraphs文档页面(分别为herehere)中进行了描述,但我不知道如何在我的html代码中实现更改。你知道我怎么办? Javascript文盲。

<html>
    <head>
        <script type="text/javascript"
            src="dygraph-combined.js"></script>
    </head>
    <body>
        <div id="graphdiv"
            style="width:1000px; height:600px;"></div><br>
        <script type="text/javascript">
            g2 = new Dygraph(
                             document.getElementById("graphdiv"),
                             "combined_file.csv", // path to CSV file
                             {  title: 'Title',
                                xlabel: 'Time',
                                ylabel: 'Space',
                                legend: 'always',
                                labelsDivStyles: {'textAlign': 'right'},
                             });
            </script>
    </body>
</html>

0 个答案:

没有答案