在dygraph中过滤日期,月份和年度数据

时间:2015-07-06 06:33:22

标签: dygraphs

  

我在下面添加了我的代码,在此我想添加日期,月份,年份明智的数据过滤器是否有可能在这个dygraph中。,我不知道该怎么做。

<html>
    <head>
  <script type="text/javascript"
  src="https://cdnjs.cloudflare.com/ajax/libs/dygraph/1.1.0/dygraph-combined-dev.js"></script>
    </head>
    <body>
    <marquee>Online Graph</marquee>
        <div id="graphdiv2"
            style="width:100%; height:50%;"></div><br>
        <script type="text/javascript">

            g2 = new Dygraph(
                             document.getElementById("graphdiv2"),
                             "te1.csv", // path to CSV file
                             {            
  				  title: 'monitor',
                                xlabel: 'date',
                                ylabel: 'pressure',
                                legend: 'always',
                                drawPoints: true
                                 
                             } );

            </script>
          
    </body>
</html>

  

在这里它从csv读取完整数据并显示全部,但我想限制它,用户点击图表将显示的按钮,如最后100条记录,日期明智,月份和年份。,请指导我

0 个答案:

没有答案