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