To use dygraphs, include the dygraph.js JavaScript file and dygraph.css CSS file. Then instantiate a Dygraph object.

Here's a basic example to get things started:

HTML

<html><head>
<script type="text/javascript"
  src="dygraph.js"></script>
<link rel="stylesheet" type="text/css"
  src="dygraph.css" />
</head><body>
<div id="graphdiv"></div>
<script type="text/javascript">
Dygraph.onDOMready(function onDOMready() {
  g = new Dygraph(

    // containing div
    document.getElementById("graphdiv"),

    // CSV or path to a CSV file.
    "Date,Temperature\n" +
    "2008-05-07,75\n" +
    "2008-05-08,70\n" +
    "2008-05-09,80\n"

  );
});
</script>
</body></html>

OUTPUT

In order to keep this example self-contained, the second parameter is raw CSV data. You can use your favourite “defer until DOM is ready” method (e.g. Prototype or jQuery); dygraphs includes a small self-contained one that can be used if nothing else is available. The dygraphs library parses this data (including column headers), resizes its container to a reasonable default, calculates appropriate axis ranges and tick marks and draws the graph. Make sure the container does not have any padding.

In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor doesn't contain a newline, 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 XMLHttpRequests! In particular, you cannot specify a CSV file using "file:///". Here's an example: (data from Weather Underground)

HTML

<html><head>
<script type="text/javascript"
  src="dygraph.js"></script>
<link rel="stylesheet" type="text/css"
  src="dygraph.css" />
</head><body>
<div id="graphdiv2"
  style="width:500px; height:300px;"></div>
<script type="text/javascript">
Dygraph.onDOMready(function onDOMready() {
  g2 = new Dygraph(
    document.getElementById("graphdiv2"),
    "temperatures.csv", // path to CSV file
    {}                  // options
  );
});
</script>
</body></html>

OUTPUT

The file used is temperatures.csv.

There are a few things to note here:

  • The Dygraph sent off an XHR to get the temperatures.csv file.
  • The labels were taken from the first line of temperatures.csv, which is Date,High,Low. Make sure they are unique!
  • The Dygraph automatically chose two different, easily-distinguishable colors for the two data series.
  • The labels on the x-axis have switched from days to months. If you zoom in, they'll switch to weeks and then days.
  • 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.
  • The data is very spiky. A moving average would be easier to interpret.

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 rollPeriod option. Here’s how it’s done:

HTML

<html><head>
<script type="text/javascript"
  src="dygraph.js"></script>
<link rel="stylesheet" type="text/css"
  src="dygraph.css" />
</head><body>
<div id="graphdiv3"
  style="width:500px; height:300px;"></div>
<script type="text/javascript">
Dygraph.onDOMready(function onDOMready() {
  g3 = new Dygraph(
    document.getElementById("graphdiv3"),
    "temperatures.csv",
    {
      rollPeriod: 7,
      showRoller: true
    }
  );
});
</script>
</body></html>

OUTPUT

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). Also note that we've explicitly set the size of the chart div.

Bands

Another significant feature of the dygraphs library is the ability to display high/low bands around data series. One standard deviation must be specified for each data point. A ±n 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. σ = sqrt( (σ12 + σ22 + ... + σn2) / n )

Here's a demonstration. There are two data series. One is N(100,10) with a standard deviation of 10 specified at each point. The other is N(80,20) with a standard deviation of 20 specified at each point. The CSV file was generated using Octave and can be viewed at twonormals.csv.

HTML

<html><head>
<script type="text/javascript"
  src="dygraph.js"></script>
<link rel="stylesheet" type="text/css"
  src="dygraph.css" />
</head><body>
<div id="graphdiv4"
  style="width:480px; height:320px;"></div>
<script type="text/javascript">
Dygraph.onDOMready(function onDOMready() {
  g4 = new Dygraph(
    document.getElementById("graphdiv4"),
    "twonormals.csv",
    {
      rollPeriod: 7,
      showRoller: true,
      errorBars: true,
      valueRange: [50,125]
    }
  );
});
</script>
</body></html>

OUTPUT

Things to note here:

  • The option is named errorBars for historical reasons.
  • The errorBars option affects both the interpretation of the CSV file and the display of the graph. When errorBars is set to true, each line is interpreted as YYYY-MM-DD, A, sigma_A, B, sigma_B, …
  • The first line of the CSV file doesn’t mention the extra columns. In this case, it’s just "Date,Series1,Series2". (Which breaks the CSV file format. This is an unfortunate historic accident.)
  • The averaging visibly affects the high/low bands. 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 high/low bands get smaller like sqrt(N) going forward in time until there’s a full 100 points to average.
  • The high/low bands are partially transparent. This can be seen when they overlap one another.

GViz Data

The Google Visualization API provides a standard interface for describing data. Once you've specified your data using this API, you can plug in any GViz-compatible visualization. dygraphs is such a visualization. In particular, it can be used as a drop-in replacement for the AnnotatedTimeline visualization used on Google Finance and other sites. To see how this works, check out the gviz annotation demo.

Here is another demonstration of how to use dygraphs a GViz visualization.

Charting Fractions

Situations often arise where you want to plot fractions, e.g. the fraction of respondents in a poll who said they'd vote for candidate X or the number of hits divided by at bats (baseball's batting average). Fractions require special treatment for two main reasons:

  • The average of a1/b1 and a2/b2 is (a1+a2)/(b1+b2), not (a1/b1 + a2/b2)/2.
  • The normal approximation is not always applicable and more sophisticated confidence intervals (e.g. the Wilson confidence interval) must be employed to avoid ratios that exceed 100% or go below 0%.

Fortunately, dygraphs handles both of these for you! Here's a chart and the command that generated it:

Batting Average for Ichiro Suzuki vs. Mariners (2004)
Code:
new Dygraph(
  document.getElementById("baseballdiv"),
  "suzuki-mariners.txt",
  {
    fractions: true,
    errorBars: true,
    showRoller: true,
    rollPeriod: 15
  }
);

The fractions option indicates that the values in each column should be parsed as fractions (e.g. "1/2" instead of "0.5"). The errorBars option indicates that we'd like to see a confidence interval around each data point. By default, when fractions is set, you get a Wilson confidence interval. If you look carefully at the chart, you can see that the high/low bands are asymmetric.

A couple things to notice about this chart:

  • The high/low bands for Ichiro's batting average are larger than for the Mariners', since he has far fewer at bats than his team.
  • dygraphs makes it easy to see "batting average over the last 30 games". This is ordinarily quite difficult to compute. It makes it clear where the "hot" and "cold" part of Suzuki's season were.
  • If you set the averaging period to something large, like 200, you'll see the team's and player's batting average through that game. The final number is the overall batting average for the season.
  • Where the high/low bands do not overlap, we can say with 95% confidence that the series differ. There is a better than 95% chance that Ichiro was a better hitter than his team as a whole in 2004, the year he won the batting title.

One last demo

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.

Display:

Common Gotchas

Here are a few problems that I've frequently run into while using the dygraphs library.

  • If your chart doesn't display, be sure to check your browser's JavaScript error console. dygraphs makes every attempt to log errors and warnings, and these can often guide you in the right direction.
  • Make sure your CSV files are readable! If your graph isn't showing up, the XMLHttpRequest for the CSV file may be failing. You can determine whether this is the case using tools like Firebug.
  • Make sure your CSV files are in the correct format. They must be of the form YYYY-MM-DD, series1, series2, … — the older YYYYMMDD as first column is not recognised as date any more but as number. And if you set the errorBars property, make sure you alternate data series and standard deviations.
  • dygraphs are not happy when placed inside a <center> tag. This applies to the CSS text-align property as well. If you want to center a Dygraph, put it inside a table with align = center set.
  • Don't set the dateWindow property to a date. It expects milliseconds since epoch, which can be obtained from a JavaScript Date object's valueOf method.
  • Make sure you don't have any trailing commas in your call to the Dygraph constructor or in the options parameter. Firefox, Chrome and Safari ignore these but they can cause a graph to not display in Internet Explorer.

What next?

If you need to support Internet Explorer, check out our notes on IE.

To get some inspiration, look at how the charts in our gallery are built.

The original author Dan Vanderkam gave a 42-minute talk about dygraphs in 2017 which might be helpful background for anyone interested in using or contributing to the project.