4 <title>callbacks
</title>
6 For production (minified) code, use:
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
9 <script type=
"text/javascript" src=
"../dist/dygraph.js"></script>
11 <script type=
"text/javascript" src=
"data.js"></script>
12 <style type=
"text/css">
25 <p>Hover, click and zoom to test the callbacks:
</p>
26 <div id=
"div_g" style=
"width:600px; height:300px;"></div>
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>
30 <input type=
"checkbox" id=
"unhighlight" checked
><label for=
"unhighlight">Show 'unhighlight' events
</label>
31 <input type=
"checkbox" id=
"showLabels" checked
32 onclick='g.updateOptions({showLabelsOnHighlight: this.checked});'
>
33 <label for=
"showLabels"> Show Labels on highlight
</label>
34 <div id=
"status" style=
"width:100%; height:200px;"></div>
36 <script type=
"text/javascript">
37 s = document.getElementById(
"status");
39 pts_info = function(e, x, pts, row) {
40 var str =
"(" + x +
") ";
41 for (var i =
0; i < pts.length; i++) {
44 str += p.name +
": " + p.yval;
49 var dataXY = g.toDataCoords(x, y);
50 str +=
", (" + x +
", " + y +
")";
51 str +=
" -> (" + dataXY[
0] +
", " + dataXY[
1] +
")";
58 document.getElementById(
"div_g"),
64 highlightCallback: function(e, x, pts, row) {
65 if (document.getElementById('highlight').checked) {
66 s.innerHTML +=
"<b>Highlight</b> " + pts_info(e,x,pts,row) +
"<br/>";
70 unhighlightCallback: function(e) {
71 if (document.getElementById('unhighlight').checked) {
72 s.innerHTML +=
"<b>Unhighlight</b><br/>";
76 clickCallback: function(e, x, pts) {
77 s.innerHTML +=
"<b>Click</b> " + pts_info(e,x,pts) +
"<br/>";
80 pointClickCallback: function(e, p) {
81 s.innerHTML +=
"<b>Point Click</b> " + p.name +
": " + p.x +
"<br/>";
84 zoomCallback: function(minX, maxX, yRanges) {
85 s.innerHTML +=
"<b>Zoom</b> [" + minX +
", " + maxX +
", [" + yRanges +
"]]<br/>";
88 drawCallback: function(g) {
89 s.innerHTML +=
"<b>Draw</b> [" + g.xAxisRange() +
"]<br/>";