4 <title>reverse y-axis
</title>
6 For production (minified) code, use:
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
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/>
17 <div id=
"demodiv"></div>
19 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
22 <script type=
"text/javascript">
24 document.getElementById(
"demodiv"),
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));
32 r +=
"," +
10*(
250 -
8*i);
33 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
40 labelsDiv: document.getElementById('status'),
41 labelsSeparateLines: true,
43 colors: [
"rgb(51,204,204)",
46 "rgba(50,50,200,0.4)"],
49 valueRange: [
3000,
0] // Reverse y-axis