1 dygraphs JavaScript charting library
2 Copyright (c) 2006-, Dan Vanderkam.
4 Support: http://groups.google.com/group/dygraphs-users
5 Source: http://github.com/danvk/dygraphs
6 Issues: http://code.google.com/p/dygraphs/
9 The dygraphs JavaScript library produces produces interactive, zoomable charts of time series.
12 - Plots time series without using an external server or Flash
13 - Supports multiple data series
14 - Supports error bands around data series
15 - Displays values on mouseover
17 - Adjustable averaging period
18 - Customizable click-through actions
19 - Compatible with the Google Visualization API
22 For a gallery and documentation, see http://danvk.org/dygraphs/
27 <script type="text/javascript" src="dygraph-combined.js"></script>
30 <div id="graphdiv"></div>
31 <script type="text/javascript">
33 document.getElementById("graphdiv"), // containing div
34 "Date,Temperature\n" + // the data series
45 - rgbcolor.js (Public Domain)
46 - strftime.js (BSD License)
47 - excanvas.js (Apache License)
48 - YUI compressor (BSD License)
50 rgbcolor: http://www.phpied.com/rgb-color-parser-in-javascript/
51 strftime: http://tech.bluesmoon.info/2008/04/strftime-in-javascript.html
52 excanvas: http://code.google.com/p/explorercanvas/
53 yui compressor: http://developer.yahoo.com/yui/compressor/
55 dygraphs is available under the MIT license, included in LICENSE.txt.