3 <title>dygraphs JavaScript Library
</title>
5 <script type=
"text/javascript" src=
"excanvas.js"></script>
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
8 <style type=
"text/css">
14 border-collapse: collapse;
16 .thinborder td, .thinborder th {
26 <p><span style=
"font-size:28pt;">dygraphs JavaScript Library
</span><br/>
27 <a href=
"http://code.google.com/p/dygraphs/">code.google.com/p/dygraphs
</a></p>
30 <p>The dygraphs JavaScript library produces produces interactive, zoomable charts of time series.
</p>
34 <li>Plots time series without using an external server or Flash
</li>
35 <li>Supports multiple data series
</li>
36 <li>Supports error bands around data series
</li>
37 <li>Displays values on mouseover
</li>
38 <li>Interactive zoom
</li>
39 <li>Adjustable averaging period
</li>
40 <li>Customizable click-through actions
</li>
41 <li>Compatible with the Google Visualization API
</li>
46 <li>Requires Firefox
1.5+ or Safari/WebKit
1.3+.
</li>
47 <li>Internet Explorer is poorly supported.
</li>
51 <font size=-
1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)
</font><br/>
53 <div id=
"demodiv" style=
"width:480px; height:320px;"></div>
55 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
58 <script type=
"text/javascript">
60 document.getElementById(
"demodiv"),
62 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
63 var r =
"date,parabola,line,another line,sine wave\n";
64 for (var i=
1; i<=
31; i++) {
65 r +=
"200610" + zp(i);
66 r +=
"," +
10*(i*(
31-i));
68 r +=
"," +
10*(
250 -
8*i);
69 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
77 labelsDiv: document.getElementById('status'),
78 labelsSeparateLines: true,
80 colors: [
"hsl(180,60,50)",
83 "rgba(50,50,200,0.4)"],
84 padding: {left:
40, right:
30, top:
15, bottom:
15},
89 <p>For more demos, browse the dygraph
<a href=
"tests/">tests
</a> directory.
</p>
93 <p>The dygraphs library depends on two other JS libraries:
<a href=
"http://www.mochikit.com/">MochiKit
</a> and
<a href=
"http://www.liquidx.net/plotkit/">PlotKit
</a>. Rather than tracking down copies of these libraries, I recommend using a packed version of dygraphs that combines all three libraries into a single JS file. Either grab this file from dygraph project's
<a href=
"http://code.google.com/p/dygraphs/downloads/list">downloads
</a> page or create it yourself by
<a href=
"http://code.google.com/p/dygraphs/source/checkout">checking out
</a> a copy of the code and running:
95 <pre>./generate-combined.sh
</pre>
97 <p>The combined JS file is now in
<code>dygraph-combined.js
</code>. Here's a basic example to get things started:
</p>
101 <td rowspan=
2><img src=arrow.gif
/></td>
107 <script
type=
"text/javascript" src=
"combined.js"></script
>
110 <div
id=
"graphdiv"></div
>
111 <script
type=
"text/javascript">
113 document.getElementById(
"graphdiv"), // containing div
114 "Date,Temperature\n" + // CSV or path to a CSV file.
124 <div id=
"graphdiv"></div>
125 <script type=
"text/javascript">
127 document.getElementById(
"graphdiv"), // containing div
128 "Date,Temperature\n" + // CSV or path to a CSV file.
136 <p>In order to keep this example self-contained, the second parameter is a function that returns CSV data. These lines
<i>must
</i> begin with a date in the form
<i>YYYYMMDD
</i>. In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor is a string, it will be interpreted as the path to a CSV file. The Dygraph will perform an XMLHttpRequest to retrieve this file and display the data when it becomes available. Make sure your CSV file is readable and serving from a place that understands XMLHttpRequest's! In particular, you cannot specify a CSV file using
<code>"file:///"</code>. Here's an example: (data from
<a href=
"http://www.wunderground.com/history/airport/KNUQ/2007/1/1/CustomHistory.html?dayend=31&monthend=12&yearend=2007&req_city=NA&req_state=NA&req_statename=NA">Weather Underground
</a>)
</p>
140 <td rowspan=
2><img src=arrow.gif
/></td>
146 <script
type=
"text/javascript" src=
"combined.js"></script
>
149 <div
id=
"graphdiv" style=
"width:600px; height:300px;"></div
>
150 <script
type=
"text/javascript">
152 document.getElementById(
"graphdiv"),
153 "temperatures.csv", // path to CSV file
154 {} // additional options
161 <div id=
"graphdiv2" style=
"width:600px; height:300px;"></div>
162 <script type=
"text/javascript">
164 document.getElementById(
"graphdiv2"),
165 "temperatures.csv", {}
170 <p>Click
<a href=
"temperatures.csv">here
</a> to view the
<code>temperatures.csv
</code> file. There are a few things to note here:
</p>
173 <li>The Dygraph sent off an XHR to get the temperatures.csv file.
</li>
174 <li>The labels were taken from the first line of
<code>temperatures.csv
</code>, which is
<code>Date,High,Low
</code>.
</li>
175 <li>The Dygraph automatically chose two different, easily-distinguishable colors for the two data series.
</li>
176 <li>The labels on the x-axis have switched from days to months. If you zoom in, they'll switch to weeks and then days.
</li>
177 <li>Some heuristics are used to determine a good vertical range for the data. The idea is to make all the data visible and have human-friendly values on the axis (i.e.
200 instead of
193.4). Generally this works well.
</li>
178 <li>The data is very spiky. A moving average would be easier to interpret.
</li>
181 <p>This problem can be fixed by specifying the appropriate options in the
"additional options" parameter to the Dygraph constructor. To set the number of days for a moving average, use the
<b>rollPeriod
</b> option. Here's how it's done:
</p>
185 <td rowspan=
2><img src=arrow.gif
/></td>
191 <script
type=
"text/javascript" src=
"combined.js"></script
>
194 <div
id=
"graphdiv" style=
"width:600px; height:300px;"></div
>
195 <script
type=
"text/javascript">
197 document.getElementById(
"graphdiv"),
208 <div id=
"graphdiv3" style=
"width:600px; height:300px;"></div>
209 <script type=
"text/javascript">
211 document.getElementById(
"graphdiv3"),
220 <p>A rolling average can be set using the text box in the lower left-hand corner of the graph (the showRoller attribute is what makes this appear).
</p>
223 <p>Another significant feature of the dygraphs library is the ability to display error bars around data series. One standard deviation must be specified for each data point. A +/-
<i>n
</i> sigma band will be drawn around the data series at that point. If a moving average is being displayed, dygraphs will compute the standard deviation of the average at each point. (i.e.
<i>σ</i> = sqrt((
<i>σ_1
</i>^
2 +
<i>σ_2
</i>^
2 + ... +
<i>σ_n
</i>^
2)/
<i>n
</i>))
</p>
225 <p>Here's a demonstration. There are two data series. One is
<code>N(
100,
10)
</code> with a standard deviation of
10 specified at each point. The other is
<code>N(
80,
20)
</code> with a standard deviation of
20 specified at each point. The CSV file was generated using Octave and can be viewed
<a href=
"twonormals.csv">here
</a>.
</p>
229 <td rowspan=
2><img src=arrow.gif
/></td>
235 <script
type=
"text/javascript"
236 src=
"combined.js"></script
>
239 <div
id=
"graphdiv"
240 style=
"width:800px; height:400px;"
242 <script
type=
"text/javascript">
243 $ = document.getElementById;
258 <div id=
"graphdiv4" style=
"width:800px; height:400px;"></div>
259 <script type=
"text/javascript">
260 $ = document.getElementById;
262 document.getElementById(
"graphdiv4"),
267 valueRange: [
50,
125]
273 <p>Things to note here:
</p>
275 <li>The
<b>errorBars
</b> option affects both the interpretation of the CSV file and the display of the graph. When
<b>errorBars
</b> is set to true, each line is interpreted as
<i>YYYYMMDD
</i>,
<i>A
</i>,
<i>sigma_A
</i>,
<i>B
</i>,
<i>sigma_B
</i>,...
</li>
276 <li>The first line of the CSV file doesn't mention the error columns. In this case, it's just
"Date,Series1,Series2".
</li>
277 <li>The averaging visibly affects the error bars. This is most clear if you crank up the rolling period to something like
100 days. For the earliest dates, there won't be
100 data points to average so the signal will be noisier. The error bars get smaller like sqrt(N) going forward in time until there's a full
100 points to average.
</li>
278 <li>The error bars are partially transparent. This can be seen when they overlap one another.
</li>
281 <h2>One last demo
</h2>
283 <p>This chart shows monthly closes of the Dow Jones Industrial Average, both in nominal and real (i.e. adjusted for inflation) dollars. The shaded areas show its monthly high and low. CPI values with a base from
1982-
84 are used to adjust for inflation.
</p>
285 <div id=dow_chart
style=
"width:1000px; height:400px;"></div>
286 <script type=
"text/javascript">
287 // From http://www.econstats.com/eqty/eq_d_mi_3.csv
289 document.getElementById('dow_chart'),
295 padding: {left:
30, right:
30, top:
5, bottom:
5}
300 Here is a script to regenerate the Dow Jones plot:
302 # Get unadjusted DJIA data in a nice format:
303 curl -O http://www.econstats.com/eqty/eq_d_mi_3.csv
304 sed '
1,
17d' eq_d_mi_3.csv | cut -d, -f1,
6 | perl -pe 's/(\d{
4}-\d\d)-\d\d/$
1/g' | perl -pe 's/, */
\t/' | grep -v 'na' | perl -ne 'chomp; ($m,$v) = split/
\t/; $close{$m} = $v; if ($low{$m} ==
0 || $v < $low{$m}) { $low{$m}=$v } if ($v
> $high{$m}) { $high{$m} = $v } END { for $x(sort keys %close) { print
"$x\t$low{$x}\t$close{$x}\t$high{$x}\n" } } '
> monthly-djia.tsv
306 # Fetch and format the CPI data:
307 curl 'http://data.bls.gov/PDQ/servlet/SurveyOutputServlet?series_id=CUUR0000SA0&years_option=all_years&periods_option=all_periods&output_type=column&output_format=text&delimiter=comma'
> cpi-u.txt
308 sed '
1,/Series Id,Year,/d' cpi-u.txt | sed '/^$/,$d' | cut -d, -f2,
3,
4 | perl -ne 'print if /,M(
0[
0-
9]|
1[
012]),/' | perl -pe 's/(\d{
4}),M(\d{
2}),/$
1-$
2\t/g'
> cpi-u.tsv
311 join -t' ' cpi-u.tsv monthly-djia.tsv
> annotated-djia.tsv
312 perl -ne 'BEGIN{print
"Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) = split /
\t/; $cpi /=
100.0; print
"$m-15,$low;$close;$high,",($low/$cpi),
";",($close/$cpi),
";",($high/$cpi),
"\n"' annotated-djia.tsv
> dow.txt
317 <h2>Other Options
</h2>
318 <p>These are the options that can be passed in through the optional third parameter of the Dygraph constructor. To see demonstrations of many of these options, browse the
<a href=
"tests/">dygraphs tests
</a> directory.
</p>
320 <table class=thinborder width=
1000>
321 <tr><th>Name
</th><th>Sample Value
</th><th>Description
</th></tr>
323 <td><b>rollPeriod
</b></td>
324 <td><code>7</code></td>
325 <td>Number of days over which to average data. Discussed extensively above.
</td>
329 <td><b>showRoller
</b></td>
330 <td><code>true
</code></td>
331 <td>Should the rolling average period text box be shown? Default is false.
</td>
335 <td><b>colors
</b></td>
336 <td><code>['red',
'#
00FF00']
</code></td>
337 <td>List of colors for the data series. These can be of the form
"#AABBCC"
338 or
"rgb(255,100,200)" or
"yellow", etc. If not specified, equally-spaced
339 points around a color wheel are used.
</td>
343 <td><b>colorSaturation
</b></td>
344 <td><code>1.0</code></td>
345 <td>If
<b>colors
</b> is not specified, saturation of the
346 automatically-generated data series colors. (
0.0-
1.0, default:
351 <td><b>colorValue
</b></td>
352 <td><code>0.5</code></td>
353 <td>If colors is not specified, value of the data series colors, as in
354 hue/saturation/value. (
0.0-
1.0, default
0.5)
</td>
358 <td><b>clickCallback
</b></td>
359 <td><code>function(e,date){ alert(date); }
</code></td>
360 <td>A function to call when a data point is clicked. The function should take
361 two arguments, the event object for the click and the date that was
362 clicked. (default null)
</td>
366 <td><b>zoomCallback
</b></td>
367 <td><code>function(minDate,maxDate) {}
</code></td>
368 <td>A function to call when the zoom window is changed (either by zooming
369 in or out). minDate and maxDate are millis since epoch.
</td>
373 <td><b>strokeWidth
</b></td>
374 <td><code>2.0</code></td>
375 <td>Width of the data lines. This can be used to increase the contrast or
376 some graphs. (default
1.0)
</td>
380 <td><b>dateWindow
</b></td>
381 <td><code>[Date.parse('
2006-
01-
01'),
<br/>
382 (new
Date()).valueOf()]
</code></td>
383 <td>Initially zoom in on a section of the graph. Is of the form [earliest,
384 latest], where earliest/latest are millis since epoch. By default, the
385 full range of the input is shown.
</td>
389 <td><b>valueRange
</b></td>
390 <td><code>[
10,
110]
</code></td>
391 <td>Explicitly set the vertical range of the graph to [low, high]. By
392 default, some clever heuristics are used (see above).
</td>
396 <td><b>labelsSeparateLines
</b></td>
397 <td><code>true
</code></td>
398 <td>Put
<br/
> between lines in the label string. Often used in
399 conjunction with
<b>labelsDiv
</b>. (default false)
</td>
403 <td><b>labelsDiv
</b></td>
404 <td><code>document.getElementById('foo')
</code></td>
405 <td>Show data labels in an external div, rather than on the graph. (default
410 <td><b>labelsKMB
</b></td>
411 <td><code>true
</code></td>
412 <td>Show K/M/B for thousands/millions/billions on y-axis (default
417 <td><b>labelsDivWidth
</b></td>
419 <td>Width (in pixels) of the div which shows information on the
420 currently-highlighted points.
</td>
424 <td><b>labelsDivStyles
</b></td>
426 <td>Additional styles to apply to the currently-highlighted points div. For
427 example, { 'font-weigth': 'bold' } will make the labels bold.
</td>
431 <td><b>highlightCircleSize
</b></td>
432 <td><code>3</code></td>
433 <td>Size (in pixels) of the dot drawn over highlighted points (default
3).
</td>
437 <td><b>pixelsPerXLabel
</b>,
<b>pixelsPerYLabel
</b></td>
439 <td>Number of pixels to require between each x- and y-label. Larger values
440 will yield a sparser axis with fewer ticks. Defaults:
60 (x-axis),
30
445 <td><b>xAxisLabelWidth
</b>,
<b>yAxisLabelWidth
</b></td>
447 <td>Width (in pixels) of the x- and y-axis labels.
</td>
451 <td><b>axisLabelFontSize
</b></td>
453 <td>Size of the font (in pixels) to use in the axis labels, both x- and
458 <td><b>rightGap
</b></td>
460 <td>Number of pixels to leave blank at the right edge of the Dygraph. This
461 makes it easier to highlight the right-most data point.
</td>
465 <td><b>errorBars
</b></td>
466 <td><code>false
</code></td>
467 <td>Does the data contain standard deviations? Setting this to true alters
468 the input format (see above). (default false)
</td>
472 <td><b>sigma
</b></td>
474 <td>When errorBars is set, shade this many standard deviations above/below
479 <td><b>fractions
</b></td>
481 <td>When set, attempt to parse each cell in the CSV file as
"a/b", where a
482 and b are integers. The ratio will be plotted. This allows computation of
483 Wilson confidence intervals (see below).
</td>
487 <td><b>wilsonInterval
</b></td>
489 <td>Use in conjunction with the
"fractions" option. Instead of plotting +/-
490 N standard deviations, dygraphs will compute a Wilson confidence interval
491 and plot that. This has more reasonable behavior for ratios close to
0 or
496 <td><b>customBars
</b></td>
498 <td>When set, parse each CSV cell as
"low;middle;high". Error bars will be
499 drawn for each point between low and high, with the series itself going
504 <p>Any options you specify also get passed on to PlotKit's
<a href=
"http://media.liquidx.net/js/plotkit-doc/PlotKit.Renderer.html">Renderer
</a> class. dygraphs will override some of these (e.g. strokeColor), but others may be useful. The
<code>padding
</code> property is an example of this.
</p>
506 <h2>Common Gotchas
</h2>
507 <p>Here are a few problems that I've frequently run into while using the
508 dygraphs library.
</p>
511 <li>Make sure your CSV files are readable! If your graph isn't showing up,
512 the XMLHttpRequest for the CSV file may be failing. You can determine whether
513 this is the case using tools like
<a
514 href=
"http://www.getfirebug.com/">Firebug
</a>.
</li>
516 <li>Make sure your CSV files are in the correct format. They must be of the
517 form
<code>YYYYMMDD,series1,series2,...
</code>. And if you set the
518 <code>errorBars
</code> property, make sure you alternate data series and
519 standard deviations.
</li>
521 <li>dygraphs are not happy when placed inside a
<code><center
></code>
522 tag. This applies to the CSS
<code>text-align
</code> property as well. If you
523 want to center a Dygraph, put it inside a table with
"align=center"
526 <li>Don't set the
<code>dateWindow
</code> property to a date. It expects
527 milliseconds since epoch, which can be obtained from a JavaScript Date
528 object's valueOf method.
</li>
532 <p>dygraphs is purely client-side JavaScript. It does not send your data to any
533 servers -- the data is process entirely in the client's browser.
</p>
535 <p><font size=-
1>Created May
9,
2008 by
<a href=mailto:danvdk@gmail.com
>Dan Vanderkam
</a></font></p>