add HTML5 doctype to all tests
[dygraphs.git] / tests / no-range.html
CommitLineData
54425b14 1<!DOCTYPE html>
93dfacfd
DV
2<html>
3 <head>
4 <title>no range</title>
5 <!--[if IE]>
a2b2c3a1 6 <script type="text/javascript" src="../excanvas.js"></script>
93dfacfd 7 <![endif]-->
d37dca40
DV
8 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
9 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
93dfacfd
DV
10 <script type="text/javascript" src="../dygraph-canvas.js"></script>
11 <script type="text/javascript" src="../dygraph.js"></script>
12 </head>
13 <body>
5c2dbd10 14 <p>Line should be visible in the middle of the chart:</p>
93dfacfd 15 <div id="blah"></div>
5c2dbd10
DV
16
17 <p>Line should be visible ~90% up the chart:</p>
18 <div id="blah2"></div>
19
93dfacfd
DV
20 <script type="text/javascript">
21 new Dygraph(document.getElementById("blah"),
22 "X,Y\n10,12345\n11,12345\n",
23 { width: 640, height: 480 });
5c2dbd10
DV
24
25 new Dygraph(document.getElementById("blah2"),
26"date,10M\n" +
27"20021229,10000000.000000\n" +
28"20030105,10000000.000000\n" +
29"20030112,10000000.000000\n" +
30"20030119,10000000.000000\n" +
31"20030126,10000000.000000\n" +
32"20030202,10000000.000000\n" +
33"20030209,10000000.000000\n" +
34"20030216,10000000.000000\n",
35 { width: 640, height: 480, includeZero: true, labelsKMB: true });
93dfacfd
DV
36 </script>
37 </body>
38</html>