Properly format timestamps at 00:00:00 with non-zero milliseconds on x axis.
[dygraphs.git] / tests / callback.html
CommitLineData
b258a3da
DV
1<html>
2 <head>
3 <title>callbacks</title>
4 <!--[if IE]>
5 <script type="text/javascript" src="excanvas.js"></script>
6 <![endif]-->
d37dca40
DV
7 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
8 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
b258a3da
DV
9 <script type="text/javascript" src="../dygraph-canvas.js"></script>
10 <script type="text/javascript" src="../dygraph.js"></script>
11 <script type="text/javascript" src="data.js"></script>
3230c662
DV
12 <style type="text/css">
13 #div_g {
14 position: absolute;
15 left: 200px;
16 top: 100px;
17 }
18 #status {
19 position: absolute;
20 top: 400px;
21 }
22 </style>
b258a3da
DV
23 </head>
24 <body>
25 <p>Hover, click and zoom to test the callbacks:</p>
d16579a0 26 <div id="div_g" style="width:600px; height:300px;"></div>
b258a3da 27
599fb4ad
DV
28 <input type="button" value="Clear list" onclick="javascript:document.getElementById('status').innerHTML=''" />
29 <input type="checkbox" id="highlight" checked><label for="highlight"> Show 'highlight' events</label>
50360fd0
NK
30 <input type="checkbox" id="showLabels" checked
31 onclick='g.updateOptions({showLabelsOnHighlight: this.checked});'>
8bc236f9 32 <label for="showLabels"> Show Labels on highlight</label>
b258a3da
DV
33 <div id="status" style="width:100%; height:200px;"></div>
34
35 <script type="text/javascript">
36 s = document.getElementById("status");
3230c662
DV
37 g = null;
38 pts_info = function(e, x, pts) {
b258a3da
DV
39 var str = "(" + x + ") ";
40 for (var i = 0; i < pts.length; i++) {
41 var p = pts[i];
42 if (i) str += ", ";
3230c662 43 str += p.name + ": " + p.yval;
b258a3da 44 }
3230c662
DV
45
46 var x = e.offsetX;
47 var y = e.offsetY;
48 var dataXY = g.toDataCoords(x, y);
49 str += ", (" + x + ", " + y + ")";
50 str += " -> (" + dataXY[0] + ", " + dataXY[1] + ")";
51
b258a3da
DV
52 return str;
53 };
54
55 g = new Dygraph(
d16579a0 56 document.getElementById("div_g"),
b258a3da
DV
57 NoisyData, {
58 rollPeriod: 7,
59 showRoller: true,
60 errorBars: true,
61
62 highlightCallback: function(e, x, pts) {
599fb4ad 63 if (document.getElementById('highlight').checked) {
3230c662 64 s.innerHTML += "<b>Highlight</b> " + pts_info(e,x,pts) + "<br/>";
599fb4ad 65 }
b258a3da
DV
66 },
67
68 clickCallback: function(e, x, pts) {
3230c662 69 s.innerHTML += "<b>Click</b> " + pts_info(e,x,pts) + "<br/>";
b258a3da
DV
70 },
71
72 zoomCallback: function(minX, maxX) {
73 s.innerHTML += "<b>Zoom</b> [" + minX + ", " + maxX + "]<br/>";
599fb4ad
DV
74 },
75
76 drawCallback: function(g) {
77 s.innerHTML += "<b>Draw</b> [" + g.xAxisRange() + "]<br/>";
b258a3da
DV
78 }
79 }
80 );
81 </script>
82 </body>
83</html>