Merge branch 'master' of github.com:danvk/dygraphs
[dygraphs.git] / tests / reverse-y-axis.html
1 <html>
2 <head>
3 <title>reverse y-axis</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 </head>
11 <body>
12 <h2>Reverse y-axis</h2>
13 <font size=-1>This test uses the same data as the <a
14 href='demo.html'>demo</a> test, but reverses the y-axis.</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 DateGraph(
23 document.getElementById("demodiv"),
24 function() {
25 var zp = function(x) { if (x < 10) return "0"+x; else return x; };
26 var r = "date,parabola,line,another line,sine wave\n";
27 for (var i=1; i<=31; i++) {
28 r += "200610" + zp(i);
29 r += "," + 10*(i*(31-i));
30 r += "," + 10*(8*i);
31 r += "," + 10*(250 - 8*i);
32 r += "," + 10*(125 + 125 * Math.sin(0.3*i));
33 r += "\n";
34 }
35 return r;
36 },
37 null,
38 {
39 rollPeriod: 1,
40 labelsDiv: document.getElementById('status'),
41 labelsSeparateLines: true,
42 labelsKMB: true,
43 colors: ["rgb(51,204,204)",
44 "rgb(255,100,100)",
45 "#00DD55",
46 "rgba(50,50,200,0.4)"],
47 padding: {left: 40, right: 30, top: 15, bottom: 15},
48 width: 480,
49 height: 320,
50 valueRange: [3000, 0] // Reverse y-axis
51 }
52 );
53 </script>
54 </body>
55 </html>