1 <!--#include
virtual=
"header.html" --
>
3 <style type=
"text/css">
4 code { white-space: pre; }
5 pre { white-space: pre; }
7 font-size:
12px !important;
11 <h2>dygraphs Annotations
</h2>
13 <p>dygraphs lets you add annotations (markers) to individual points on your
14 chart. These markers have a short bit of text or an icon that's displayed
15 over the chart, plus a longer description that appears when you hover over
18 <h3>Demo: Dow Jones Industrial Average
</h3>
19 <div id=
"dow_chart" style=
"width: 800px; height: 250px;"></div>
20 <script type=
"text/javascript">
21 // From http://www.econstats.com/eqty/eq_d_mi_3.csv
22 stockchart = new Dygraph(
23 document.getElementById('dow_chart'),
33 stockchart.ready(function(g) {
39 text:
"1929 Stock Market Peak",
40 cssClass: 'annotation'
47 cssClass: 'annotation'
53 text:
"1999 (.com) Peak",
54 cssClass: 'annotation'
60 text:
"All-Time Market Peak",
61 cssClass: 'annotation'
67 <h3>Adding Annotations
</h3>
69 <p>There are two methods which are used to add, remove and modify annotations:
</p>
71 <table class=
"thinborder">
73 <td><code>setAnnotations(array)
</code></td>
74 <td>Set the list of annotations currently displayed. This overwrites
75 existing annotations and redraws the dygraph.
</td>
78 <td><code>annotations
</code></td>
79 <td>Returns an array of the currently-displayed annotations.
</td>
83 <p>Calling
<code>dygraph.setAnnotations(dygraph.annotations())
</code> is a
84 no-op: it simply causes the chart to refresh.
</p>
86 <p>Let's say we have a simple chart and wish to add an annotation. Here's how:
</p>
88 <div class=
"example" style=
"clear:both;">
89 <div class=
"codeblock" style=
"float:left;width:400px;">
90 <h3 style=
"text-align:center">HTML
</h3>
92 <script type=
"text/javascript
">
94 document.getElementById(
"graphdiv
"),
95 "Date,Temperature
\n" +
96 "2008-
05-
07,
75\n" +
97 "2008-
05-
08,
70\n" +
98 "2008-
05-
09,
80\n"
104 series:
"Temperature
",
105 x:
"2008-
05-
08",
106 shortText:
"L
",
107 text:
"Coldest Day
"
115 <div class=
"codeoutput" style=
"float:left;">
116 <h3 style=
"text-align:center">OUTPUT
</h3>
117 <div id=
"graphdiv" style=
"width: 350px; height: 250px;"></div>
118 <script type=
"text/javascript">
122 document.getElementById(
"graphdiv"),
124 // CSV or path to a CSV file.
125 "Date,Temperature\n" +
133 series:
"Temperature",
144 <p style=
"clear:both">Annotations are JavaScript dictionaries. The
<code>series
</code> and
<code>x
</code> fields are required: they indicate which point the annotation should be attached to. If specified,
<code>shortText
</code> will appear on the annotation
"flag". If you don't specify
<code>shortText
</code>, you can specify
<code>icon
</code> instead to display a small picture. The
<code>text
</code> parameter specifies hovertext. If you highlight the annotation and leave the mouse still, it will appear.
</p>
146 <p>If you are using
<a href=
"http://dygraphs.com/data.html#array">native format
</a>, you need to pass in a numeric value for the
<code>x
</code> field. For a numeric x-axis, simply pass in the x-value of the data point on which you wish to attach the annotation. For a date axis, pass in
<code>Date.parse('YYYY/MM/DD')
</code>. This returns milliseconds since epoch for the date.
</p>
148 <h3>Modifying Annotations
</h3>
149 <p>To remove or modify existing annotations, call the
150 <code>annotations
</code> method to get an array of annotations. Modify that
151 array, then pass it back in to
<code>setAnnotations
</code>. For example, this
152 code deletes the second annotation and changes the series to which the first
156 var annotations = g.annotations();
157 annotations.splice(
1,
1); // remove the second annotation
158 annotations[
0].series =
"Series 2";
159 g.setAnnotations(annotations); // causes a redraw
162 <p>For a more real-life example, see the
<a
163 href=
"tests/annotation.html">annotations demo
</a></p>
165 <h3>Annotations and Data Sources
</h3>
166 <p>When you pass a URL as the data source to dygraphs, it must issue a request
167 for the data before drawing the chart. This means that the chart data is not yet
168 available immediately after you call
<code>new Dygraph
</code> and so the call to
169 <code>g.setAnnotations
</code> will fail. The best way around this is to use the
170 <code>ready()
</code> method:
</p>
172 <pre>g = new Dygraph(div,
"path/to/data.csv");
174 // This is called when data.csv comes back and the chart draws.
181 <h3>Annotations property reference
</h3>
182 <p>These properties can all be set in the dictionary for an annotation. The use of each one is demonstrated on the
<a href=
"tests/annotation.html">annotations demo
</a> page.
</p>
184 <table class=
"thinborder">
185 <tr> <td><b>Property
</b></td><td><b>Description
</b></td> </tr>
186 <tr><td><code>series
</code></td> <td><i>Required
</i> The name of the series to which the annotated point belongs.
</td></tr>
187 <tr><td><code>x
</code></td><td><i>Required
</i> The x value of the point. This should be the same as the value you specified in your CSV file, e.g.
"2010-09-13".
</td></tr>
188 <tr><td><code>shortText
</code></td><td>Text that will appear on the annotation's flag.
</td></tr>
189 <tr><td><code>text
</code></td><td>A longer description of the annotation which will appear when the user hovers over it.
</td></tr>
190 <tr><td><code>icon
</code></td><td>Specify in place of
<code>shortText
</code> to mark the annotation with an image rather than text. If you specify this, you must specify
<code>width
</code> and
<code>height
</code>.
</td></tr>
191 <tr><td><code>width
</code></td><td>Width (in pixels) of the annotation flag or icon.
</td></tr>
192 <tr><td><code>height
</code></td><td>Height (in pixels) of the annotation flag or icon.
</td></tr>
193 <tr><td><code>cssClass
</code></td><td>CSS class to use for styling the annotation.
</td></tr>
194 <tr><td><code>tickHeight
</code></td><td>Height of the tick mark (in pixels) connecting the point to its flag or icon.
</td></tr>
195 <tr><td><code>attachAtBottom
</code></td><td>If true, attach annotations to the x-axis, rather than to actual points.
</td></tr>
196 <tr><td><code>clickHandler
</code></td> <td>See Handlers, below
</td></tr>
197 <tr><td><code>mouseOverHandler
</code></td><td>See Handlers, below
</td></tr>
198 <tr><td><code>mouseOutHandler
</code></td> <td>See Handlers, below
</td></tr>
199 <tr><td><code>dblClickHandler
</code></td> <td>See Handlers, below
</td></tr>
202 <h3>Annotation event handlers
</h3>
204 <p>dygraphs lets you attach event handlers to your annotations. These can be
205 specified globally (for all annotations) or on a per-annotation basis:
</p>
207 <table class=
"thinborder">
208 <tr><td><b>Per-point field
</b></td><td><b>Global option
</b></td></tr>
209 <tr><td><code>clickHandler
</code></td> <td><code>annotationClickHandler
</code></td></tr>
210 <tr><td><code>mouseOverHandler
</code></td><td><code>annotationMouseOverHandler
</code></td></tr>
211 <tr><td><code>mouseOutHandler
</code></td> <td><code>annotationMouseOutHandler
</code></td></tr>
212 <tr><td><code>dblClickHandler
</code></td> <td><code>annotationDblClickHandler
</code></td></tr>
215 <p>These event handlers all take the same parameters:
</p>
217 <pre>g.updateOptions( {
218 annotationClickHandler: function(annotation, point, dygraph, event) {
219 // ... access/modify annotation.series, annotation.x, ...
223 <p>Again, check out the
<a href=
"tests/annotation.html">annotations demo
</a>
224 for concrete examples of usage of all these handlers.
</p>
226 <!--#include
virtual=
"footer.html" --
>