add HTML5 doctype to all tests
[dygraphs.git] / tests / isolated-points.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>isolated points</title>
5 <!--[if IE]>
6 <script type="text/javascript" src="../excanvas.js"></script>
7 <![endif]-->
8 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
9 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
10 <script type="text/javascript" src="../dygraph-canvas.js"></script>
11 <script type="text/javascript" src="../dygraph.js"></script>
12 </head>
13 <body>
14 <div id="graph"></div>
15 <script type="text/javascript">
16 new Dygraph(
17 document.getElementById("graph"),
18 [
19 [ 1, 10, 11],
20 [ 2, 15, null],
21 [ 3, null, null],
22 [ 4, 20, 13],
23 [ 5, null, 10],
24 [ 6, 18, null],
25 [ 7, 12, 16]
26 ],
27 {
28 labels: ["X", "S1", "S2" ],
29 showRoller: true
30 }
31 );
32 </script>
33 </body>
34 </html>