1 dygraphs JavaScript charting library
2 Copyright (c) 2006-, Dan Vanderkam.
4 Documentation: http://dygraphs.com/
5 Support: http://groups.google.com/group/dygraphs-users
6 Source: http://github.com/danvk/dygraphs
7 Issues: http://code.google.com/p/dygraphs/
10 The dygraphs JavaScript library produces produces interactive, zoomable charts of time series.
13 - Plots time series without using an external server or Flash
14 - Supports multiple data series
15 - Supports error bands around data series
16 - Displays values on mouseover
18 - Adjustable averaging period
19 - Customizable click-through actions
20 - Compatible with the Google Visualization API
23 For a gallery and documentation, see http://dygraphs.com/
28 <script type="text/javascript" src="dygraph-combined.js"></script>
31 <div id="graphdiv"></div>
32 <script type="text/javascript">
34 document.getElementById("graphdiv"), // containing div
35 "Date,Temperature\n" + // the data series
45 If you've made a change to dygraphs and would like to contribute it back to the
46 community, please follow the guide at http://dygraphs.com/changes.html.
50 - rgbcolor.js (Public Domain)
51 - strftime.js (BSD License)
52 - excanvas.js (Apache License)
53 - YUI compressor (BSD License)
55 rgbcolor: http://www.phpied.com/rgb-color-parser-in-javascript/
56 strftime: http://tech.bluesmoon.info/2008/04/strftime-in-javascript.html
57 excanvas: http://code.google.com/p/explorercanvas/
58 yui compressor: http://developer.yahoo.com/yui/compressor/
60 dygraphs is available under the MIT license, included in LICENSE.txt.