99a717356f7189c3c7d0881c1b3c336dd0365bde
[dygraphs.git] / tests / reverse-y-axis.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="../css/dygraph.css">
5 <title>reverse y-axis</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>Reverse y-axis</h2>
15 <font size=-1>This test uses the same data as the <a
16 href='demo.html'>demo</a> test, but reverses the y-axis.</font><br/>
17 <table><tr><td>
18 <div id="demodiv"></div>
19 </td><td valign=top>
20 <div id="status" style="width:200px; font-size:0.8em; padding-top:5px;"></div>
21 </td>
22 </tr></table>
23 <script type="text/javascript">
24 g = new Dygraph(
25 document.getElementById("demodiv"),
26 function() {
27 var zp = function(x) { if (x < 10) return "0"+x; else return x; };
28 var r = "date,parabola,line,another line,sine wave\n";
29 for (var i=1; i<=31; i++) {
30 r += "200610" + zp(i);
31 r += "," + 10*(i*(31-i));
32 r += "," + 10*(8*i);
33 r += "," + 10*(250 - 8*i);
34 r += "," + 10*(125 + 125 * Math.sin(0.3*i));
35 r += "\n";
36 }
37 return r;
38 },
39 {
40 rollPeriod: 1,
41 labelsDiv: document.getElementById('status'),
42 labelsSeparateLines: true,
43 labelsKMB: true,
44 colors: ["rgb(51,204,204)",
45 "rgb(255,100,100)",
46 "#00DD55",
47 "rgba(50,50,200,0.4)"],
48 width: 480,
49 height: 320,
50 valueRange: [3000, 0] // Reverse y-axis
51 }
52 );
53 </script>
54 </body>
55 </html>