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