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