add HTML5 doctype to all tests
[dygraphs.git] / tests / grid_dot.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Custom grid and Dot</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 <script type="text/javascript" src="data.js"></script>
13 </head>
14
15 <body>
16 <p>Dot and lines should be extra large. Grid is red.</p>
17 <div id="div_g14" style="width:600px; height:300px;"></div>
18
19 <script type="text/javascript">
20 g14 = new Dygraph(
21 document.getElementById("div_g14"),
22 NoisyData, {
23 rollPeriod: 14,
24 errorBars: true,
25 gridLineColor: '#FF0000',
26 highlightCircleSize: 10,
27 strokeWidth: 3
28 }
29 );
30 </script>
31 </body>
32 </html>