copy over a sneaky undefined value
[dygraphs.git] / tests / reverse-y-axis.html
CommitLineData
54425b14 1<!DOCTYPE html>
51e9f651
YK
2<html>
3 <head>
e21e69e2 4 <title>reverse y-axis</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
51e9f651
YK
11 </head>
12 <body>
e21e69e2
DV
13 <h2>Reverse y-axis</h2>
14 <font size=-1>This test uses the same data as the <a
15 href='demo.html'>demo</a> test, but reverses the y-axis.</font><br/>
51e9f651
YK
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">
00259bf3 23 g = new Dygraph(
51e9f651
YK
24 document.getElementById("demodiv"),
25 function() {
26 var zp = function(x) { if (x < 10) return "0"+x; else return x; };
27 var r = "date,parabola,line,another line,sine wave\n";
28 for (var i=1; i<=31; i++) {
29 r += "200610" + zp(i);
30 r += "," + 10*(i*(31-i));
31 r += "," + 10*(8*i);
32 r += "," + 10*(250 - 8*i);
33 r += "," + 10*(125 + 125 * Math.sin(0.3*i));
34 r += "\n";
35 }
36 return r;
37 },
51e9f651
YK
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)"],
51e9f651
YK
47 width: 480,
48 height: 320,
e21e69e2 49 valueRange: [3000, 0] // Reverse y-axis
51e9f651
YK
50 }
51 );
52 </script>
53</body>
54</html>