The current version of dygraphs is 2.1.0. Most users will want to download minified files for this version:

The Debian version 2.1.1, which this documentation was built for, corresponds to that release (plus patches as applicable). Note that, in the Debian package, most of the following links will not work for hopefully obvious reasons.

There's a hosted version of dygraphs on cdnjs.com:

<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.js"></script>
<link rel="stylesheet" type="text/css" src="//cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.css" />

You can also install dygraphs using NPM:

$ npm install dygraphs
# dygraphs is now in node_modules/dygraphs/dygraph.js

Most distributions include a source map to facilitate debugging.

To generate your own minified JS, run:

git clone https://github.com/danvk/dygraphs.git
npm run build

This will create a dygraph.min.js file in the dist directory.

You may also download files for previously-released versions:

See Version History for more information on each release.