add HTML5 doctype to all tests
[dygraphs.git] / tests / grid_dot.html
CommitLineData
54425b14 1<!DOCTYPE html>
a9fc39ab
DV
2<html>
3 <head>
4 <title>Custom grid and Dot</title>
5 <!--[if IE]>
a2b2c3a1 6 <script type="text/javascript" src="../excanvas.js"></script>
a9fc39ab 7 <![endif]-->
d16579a0
DV
8 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
9 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
285a6bda 10 <script type="text/javascript" src="../dygraph-canvas.js"></script>
a9fc39ab
DV
11 <script type="text/javascript" src="../dygraph.js"></script>
12 <script type="text/javascript" src="data.js"></script>
13 </head>
b8bd9b35 14
a9fc39ab
DV
15 <body>
16 <p>Dot and lines should be extra large. Grid is red.</p>
d16579a0 17 <div id="div_g14" style="width:600px; height:300px;"></div>
a9fc39ab
DV
18
19 <script type="text/javascript">
285a6bda 20 g14 = new Dygraph(
d16579a0 21 document.getElementById("div_g14"),
285a6bda 22 NoisyData, {
a9fc39ab
DV
23 rollPeriod: 14,
24 errorBars: true,
f2f24402 25 gridLineColor: '#FF0000',
a9fc39ab 26 highlightCircleSize: 10,
f2f24402 27 strokeWidth: 3
a9fc39ab
DV
28 }
29 );
30 </script>
31 </body>
32</html>