3 <title>dateWindow
</title>
5 <script type=
"text/javascript" src=
"excanvas.js"></script>
7 <script type=
"text/javascript" src=
"../dygraph-combined.js"></script>
8 <script type=
"text/javascript" src=
"../dygraph-canvas.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph.js"></script>
12 <p>dateWindow is set to something other than an x-value in the data set.
13 Grid lines should still go through data points. In the second chart, there
14 should be lines going off the edge of the chart (to data points out of
17 <div id=
"div_g1" style=
"width:900px; height:300px;"></div>
18 <div id=
"div_g2" style=
"width:900px; height:300px;"></div>
20 <script type=
"text/javascript">
22 for (var i =
1; i <
10; i++) {
23 data.push([new Date(
"2009/10/0" + i), i%
2, i%
3]);
27 document.getElementById(
"div_g1"),
29 dateWindow: [ Date.parse(
"2009/09/29 12:00:00"),
30 Date.parse(
"2009/10/10 12:00:00") ]
35 document.getElementById(
"div_g2"),
37 dateWindow: [ Date.parse(
"2009/10/01 12:00:00"),
38 Date.parse(
"2009/10/08 12:00:00") ]
44 To complete panning support:
45 1. Find a way to implement RoundTime() in Dygraph.prototype.GetXAxis().
46 2. Draw lines to points past the edge of the canvas.