4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 For production (minified) code, use:
14 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
16 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
18 <style type=
"text/css">
24 <h3>Annotations Demo
</h3>
25 <p>Click any point to add an annotation to it or click
"Add Annotation".
</p>
26 <input type=
"button" value=
"Add Annotation" onclick=
"add()" />
27 <input type=
"button" value=
"Shove to bottom" onclick=
"bottom(this)" />
28 <div id=
"events"> </div>
29 <div style=
"position:absolute; left:200px; top: 200px;" id=
"g_div"></div>
30 <div style=
"position:absolute; left:700px; top: 200px;" id=
"list"></div>
32 <script type=
"text/javascript">
33 var eventDiv = document.getElementById(
"events");
34 function nameAnnotation(ann) {
35 return
"(" + ann.series +
", " + ann.x +
")";
39 document.getElementById(
"g_div"),
41 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
42 var r =
"date,parabola,line,another line,sine wave\n";
43 for (var i=
1; i<=
31; i++) {
44 r +=
"200610" + zp(i);
45 r +=
"," +
10*(i*(
31-i));
47 r +=
"," +
10*(
250 -
8*i);
48 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
58 drawCallback: function(g) {
59 var ann = g.annotations();
61 for (var i =
0; i < ann.length; i++) {
62 var name = nameAnnotation(ann[i]);
63 html +=
"<span id='" + name +
"'>"
64 html += name +
": " + (ann[i].shortText || '(icon)')
65 html +=
" -> " + ann[i].text +
"</span><br/>";
67 document.getElementById(
"list").innerHTML = html;
74 for (var x =
10; x <
15; x +=
2) {
79 text: 'Stock Market Crash ' + x
84 series: 'another line',
91 cssClass: 'annotation',
92 clickHandler: function() {
93 document.getElementById(
"events").innerHTML +=
"special handler<br/>";
96 g.setAnnotations(annotations);
100 var annnotations = g.annotations();
109 g.setAnnotations(annotations);
112 function bottom(el) {
113 var to_bottom = true;
114 if (el.value != 'Shove to bottom') to_bottom = false;
116 var anns = g.annotations();
117 for (var i =
0; i < anns.length; i++) {
118 anns[i].attachAtBottom = to_bottom;
120 g.setAnnotations(anns);
123 el.value = 'Lift back up';
125 el.value = 'Shove to bottom';
132 annotationClickHandler: function(ann, point, dg, event) {
133 eventDiv.innerHTML +=
"click: " + nameAnnotation(ann) +
"<br/>";
135 annotationDblClickHandler: function(ann, point, dg, event) {
136 eventDiv.innerHTML +=
"dblclick: " + nameAnnotation(ann) +
"<br/>";
138 annotationMouseOverHandler: function(ann, point, dg, event) {
139 document.getElementById(nameAnnotation(ann)).style.fontWeight = 'bold';
140 saveBg = ann.div.style.backgroundColor;
141 ann.div.style.backgroundColor = '#ddd';
143 annotationMouseOutHandler: function(ann, point, dg, event) {
144 document.getElementById(nameAnnotation(ann)).style.fontWeight = 'normal';
145 ann.div.style.backgroundColor = saveBg;
148 pointClickCallback: function(event, p) {
149 // Check if the point is already annotated.
150 if (p.annotation) return;
157 text:
"Annotation #" + num
159 var anns = g.annotations();
161 g.setAnnotations(anns);