Stop including dygraph-combined.js in tests
[dygraphs.git] / tests / grid_dot.html
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="../strftime/strftime-min.js"></script>
8 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
9 <script type="text/javascript" src="../dygraph-canvas.js"></script>
10 <script type="text/javascript" src="../dygraph.js"></script>
11 <script type="text/javascript" src="data.js"></script>
12 </head>
13
14 <body>
15 <p>Dot and lines should be extra large. Grid is red.</p>
16 <div id="div_g14" style="width:600px; height:300px;"></div>
17
18 <script type="text/javascript">
19 g14 = new Dygraph(
20 document.getElementById("div_g14"),
21 NoisyData, {
22 rollPeriod: 14,
23 errorBars: true,
24 gridLineColor: '#FF0000',
25 highlightCircleSize: 10,
26 strokeWidth: 3
27 }
28 );
29 </script>
30 </body>
31 </html>