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