Merge pull request #715 from simonkwesi/patch-1
[dygraphs.git] / tests / dateWindow.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>dateWindow</title>
5 <!--
6 For production (minified) code, use:
7 <script type="text/javascript" src="dygraph-combined.js"></script>
8 -->
9 <script type="text/javascript" src="../dist/dygraph.js"></script>
10
11 </head>
12 <body>
13 <p>dateWindow is set to something other than an x-value in the data set.
14 Grid lines should still go through data points. In the second chart, there
15 should be lines going off the edge of the chart (to data points out of
16 view).</p>
17
18 <div id="div_g1" style="width:900px; height:300px;"></div>
19 <div id="div_g2" style="width:900px; height:300px;"></div>
20
21 <script type="text/javascript">
22 var data = [];
23 for (var i = 1; i < 10; i++) {
24 data.push([new Date("2009/10/0" + i), i%2, i%3]);
25 }
26
27 g1 = new Dygraph(
28 document.getElementById("div_g1"),
29 data, {
30 dateWindow: [ Date.parse("2009/09/29 12:00:00"),
31 Date.parse("2009/10/10 12:00:00") ],
32 labels: [ 'Date', 'Y1', 'Y2' ]
33 }
34 );
35
36 g2 = new Dygraph(
37 document.getElementById("div_g2"),
38 data, {
39 dateWindow: [ Date.parse("2009/10/01 12:00:00"),
40 Date.parse("2009/10/08 12:00:00") ],
41 labels: [ 'Date', 'Y1', 'Y2' ]
42 }
43 );
44 </script>
45 </body>
46 </html>