add the magic <meta> tag for IE8+9
[dygraphs.git] / tests / grid_dot.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
5 <title>Custom grid and Dot</title>
6 <!--[if IE]>
7 <script type="text/javascript" src="../excanvas.js"></script>
8 <![endif]-->
9 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
10 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
11 <script type="text/javascript" src="../dygraph-canvas.js"></script>
12 <script type="text/javascript" src="../dygraph.js"></script>
13 <script type="text/javascript" src="data.js"></script>
14 </head>
15
16 <body>
17 <p>Dot and lines should be extra large. Grid is red.</p>
18 <div id="div_g14" style="width:600px; height:300px;"></div>
19
20 <script type="text/javascript">
21 g14 = new Dygraph(
22 document.getElementById("div_g14"),
23 NoisyData, {
24 rollPeriod: 14,
25 errorBars: true,
26 gridLineColor: '#FF0000',
27 highlightCircleSize: 10,
28 strokeWidth: 3
29 }
30 );
31 </script>
32 </body>
33 </html>