Add unit test to detect the "unwanted draw point"
[dygraphs.git] / tests / reverse-y-axis.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>reverse y-axis</title>
5 <!--
6 For production (minified) code, use:
7 <script type="text/javascript" src="dygraph-combined.js"></script>
8 -->
9 <script type="text/javascript" src="../dist/dygraph.js"></script>
10
11 </head>
12 <body>
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/>
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">
23 g = new Dygraph(
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 },
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)"],
47 width: 480,
48 height: 320,
49 valueRange: [3000, 0] // Reverse y-axis
50 }
51 );
52 </script>
53 </body>
54 </html>