1 dygraphs JavaScript charting library
3 Copyright (c) 2006-, Dan Vanderkam.
5 Documentation: http://dygraphs.com/
6 Support: http://stackoverflow.com/questions/tagged/dygraphs
7 http://groups.google.com/group/dygraphs-users
8 Source: http://github.com/danvk/dygraphs
9 Issues: https://github.com/danvk/dygraphs/issues
12 The dygraphs JavaScript library produces interactive, zoomable charts of time series.
15 - Plots time series without using an external server or Flash
16 - Supports multiple data series
17 - Supports error bands around data series
18 - Displays values on mouseover
20 - Adjustable averaging period
21 - Customizable click-through actions
22 - Compatible with the Google Visualization API
25 For a gallery and documentation, see http://dygraphs.com/
30 <script type="text/javascript" src="dygraph-combined.js"></script>
33 <div id="graphdiv"></div>
34 <script type="text/javascript">
36 document.getElementById("graphdiv"), // containing div
37 "Date,Temperature\n" + // the data series
48 If you've made a change to dygraphs and would like to contribute it back to the
49 community, please follow the guide at http://dygraphs.com/changes.html.
53 - excanvas.js (Apache License)
54 - YUI compressor (BSD License)
55 - JsDoc Toolkit (MIT license)
56 - console-polyfill (MIT license)
59 - auto_tests/lib/jquery-1.4.2.js (MIT & GPL2)
60 - auto_tests/lib/Asserts.js (Apache 2.0 License)
61 - auto-tests/lib/JsTestDriver-1.3.3cjar (Apache 2.0 License
63 excanvas: http://code.google.com/p/explorercanvas/
64 yui compressor: http://developer.yahoo.com/yui/compressor/
65 jsdoc toolkit: http://code.google.com/p/jsdoc-toolkit/
67 jquery: http://code.jquery.com/jquery-1.4.2.js
68 Asserts.js: http://www.google.com/codesearch/p?#3tsINRJRCro/trunk/JsTestDriver/src/com/google/jstestdriver/javascript/Asserts.js
69 JSTestDriver: http://code.google.com/p/js-test-driver/
71 dygraphs is available under the MIT license, included in LICENSE.txt.