dependence on PlotKit.Canvas is severed
[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="../dygraph-combined.js"></script>
8 <script type="text/javascript" src="../dygraph-canvas.js"></script>
9 <script type="text/javascript" src="../dygraph.js"></script>
10 <script type="text/javascript" src="data.js"></script>
11 </head>
12
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">
18 g14 = new Dygraph(
19 document.getElementById("g14"),
20 NoisyData, {
21 rollPeriod: 14,
22 errorBars: true,
23 gridLineColor: MochiKit.Color.Color.redColor(),
24 highlightCircleSize: 10,
25 strokeWidth: 3,
26 }
27 );
28 </script>
29 </body>
30 </html>