remove some unneeded bits from Canvas.js
[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 9 <script type="text/javascript" src="../dygraph.js"></script>
b8bd9b35
DV
10 <script type="text/javascript" src="../plotkit_v091/PlotKit/Base.js"></script>
11 <script type="text/javascript" src="../plotkit_v091/PlotKit/Canvas.js"></script>
a9fc39ab
DV
12 <script type="text/javascript" src="data.js"></script>
13 </head>
b8bd9b35 14
a9fc39ab
DV
15 <body>
16 <p>Dot and lines should be extra large. Grid is red.</p>
17 <div id="g14" style="width:600px; height:300px;"></div>
18
19 <script type="text/javascript">
285a6bda 20 g14 = new Dygraph(
a9fc39ab 21 document.getElementById("g14"),
285a6bda 22 NoisyData, {
a9fc39ab
DV
23 rollPeriod: 14,
24 errorBars: true,
25 gridLineColor: MochiKit.Color.Color.redColor(),
26 highlightCircleSize: 10,
27 strokeWidth: 3,
a9fc39ab
DV
28 }
29 );
30 </script>
31 </body>
32</html>