4dad758ff72cb216cd80db7a30515e330241ae60
[dygraphs.git] / tests / century-scale.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="../css/dygraph.css">
5 <title>demo</title>
6 <!--
7 For production (minified) code, use:
8 <script type="text/javascript" src="dygraph-combined.js"></script>
9 -->
10 <script type="text/javascript" src="../dist/dygraph.js"></script>
11
12 </head>
13 <body>
14 <h2>Demo</h2>
15 <font size=-1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)</font><br/>
16 <table><tr><td>
17 <div id="demodiv"></div>
18 </td><td valign=top>
19 <div id="status" style="width:200px; font-size:0.8em; padding-top:5px;"></div>
20 </td>
21 </tr></table>
22 <script type="text/javascript">
23 g = new Dygraph(
24 document.getElementById("demodiv"),
25 "Date,Value\n" +
26 "1776/01/01,100\n" +
27 "1876/01/01,200\n" +
28 "1976/01/01,150\n",
29 {
30 rollPeriod: 1,
31 labelsDiv: document.getElementById('status'),
32 labelsSeparateLines: true,
33 labelsKMB: true,
34 colors: ["rgb(51,204,204)",
35 "rgb(255,100,100)",
36 "#00DD55",
37 "rgba(50,50,200,0.4)"],
38 width: 480,
39 height: 320
40 }
41 );
42 </script>
43 </body>
44 </html>