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>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
17 <h2>Reverse y-axis
</h2>
18 <font size=-
1>This test uses the same data as the
<a
19 href='demo.html'
>demo
</a> test, but reverses the y-axis.
</font><br/>
21 <div id=
"demodiv"></div>
23 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
26 <script type=
"text/javascript">
28 document.getElementById(
"demodiv"),
30 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
31 var r =
"date,parabola,line,another line,sine wave\n";
32 for (var i=
1; i<=
31; i++) {
33 r +=
"200610" + zp(i);
34 r +=
"," +
10*(i*(
31-i));
36 r +=
"," +
10*(
250 -
8*i);
37 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
44 labelsDiv: document.getElementById('status'),
45 labelsSeparateLines: true,
47 colors: [
"rgb(51,204,204)",
50 "rgba(50,50,200,0.4)"],
53 valueRange: [
3000,
0] // Reverse y-axis