4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>reverse y-axis
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../strftime/strftime-min.js"></script>
10 <script type=
"text/javascript" src=
"../rgbcolor/rgbcolor.js"></script>
11 <script type=
"text/javascript" src=
"../dygraph-canvas.js"></script>
12 <script type=
"text/javascript" src=
"../dygraph.js"></script>
15 <h2>Reverse y-axis
</h2>
16 <font size=-
1>This test uses the same data as the
<a
17 href='demo.html'
>demo
</a> test, but reverses the y-axis.
</font><br/>
19 <div id=
"demodiv"></div>
21 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
24 <script type=
"text/javascript">
26 document.getElementById(
"demodiv"),
28 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
29 var r =
"date,parabola,line,another line,sine wave\n";
30 for (var i=
1; i<=
31; i++) {
31 r +=
"200610" + zp(i);
32 r +=
"," +
10*(i*(
31-i));
34 r +=
"," +
10*(
250 -
8*i);
35 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
42 labelsDiv: document.getElementById('status'),
43 labelsSeparateLines: true,
45 colors: [
"rgb(51,204,204)",
48 "rgba(50,50,200,0.4)"],
51 valueRange: [
3000,
0] // Reverse y-axis