Commit | Line | Data |
---|---|---|
54425b14 | 1 | <!DOCTYPE html> |
a9fc39ab DV |
2 | <html> |
3 | <head> | |
10494b48 | 4 | <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9"> |
a9fc39ab DV |
5 | <title>Custom grid and Dot</title> |
6 | <!--[if IE]> | |
a2b2c3a1 | 7 | <script type="text/javascript" src="../excanvas.js"></script> |
a9fc39ab | 8 | <![endif]--> |
7e5ddc94 DV |
9 | <!-- |
10 | For production (minified) code, use: | |
11 | <script type="text/javascript" src="dygraph-combined.js"></script> | |
12 | --> | |
13 | <script type="text/javascript" src="../dygraph-dev.js"></script> | |
14 | ||
a9fc39ab DV |
15 | <script type="text/javascript" src="data.js"></script> |
16 | </head> | |
b8bd9b35 | 17 | |
a9fc39ab DV |
18 | <body> |
19 | <p>Dot and lines should be extra large. Grid is red.</p> | |
d16579a0 | 20 | <div id="div_g14" style="width:600px; height:300px;"></div> |
a9fc39ab DV |
21 | |
22 | <script type="text/javascript"> | |
285a6bda | 23 | g14 = new Dygraph( |
d16579a0 | 24 | document.getElementById("div_g14"), |
285a6bda | 25 | NoisyData, { |
a9fc39ab DV |
26 | rollPeriod: 14, |
27 | errorBars: true, | |
f2f24402 | 28 | gridLineColor: '#FF0000', |
a9fc39ab | 29 | highlightCircleSize: 10, |
f2f24402 | 30 | strokeWidth: 3 |
a9fc39ab DV |
31 | } |
32 | ); | |
33 | </script> | |
34 | </body> | |
35 | </html> |