Commit | Line | Data |
---|---|---|
19e4f838 DV |
1 | dygraphs JavaScript charting library |
2 | Copyright (c) 2006-, Dan Vanderkam. | |
c5b6da49 | 3 | |
727439b4 | 4 | Documentation: http://dygraphs.com/ |
c5b6da49 DV |
5 | Support: http://groups.google.com/group/dygraphs-users |
6 | Source: http://github.com/danvk/dygraphs | |
7 | Issues: http://code.google.com/p/dygraphs/ | |
8af5b23b | 8 | |
19e4f838 | 9 | |
285a6bda | 10 | The dygraphs JavaScript library produces produces interactive, zoomable charts of time series. |
19e4f838 DV |
11 | |
12 | Features | |
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 | |
17 | - Interactive zoom | |
18 | - Adjustable averaging period | |
19 | - Customizable click-through actions | |
285a6bda | 20 | - Compatible with the Google Visualization API |
19e4f838 | 21 | |
19e4f838 | 22 | Demo |
727439b4 | 23 | For a gallery and documentation, see http://dygraphs.com/ |
19e4f838 DV |
24 | |
25 | Minimal Example | |
26 | <html> | |
27 | <head> | |
28 | <script type="text/javascript" src="dygraph-combined.js"></script> | |
29 | </head> | |
30 | <body> | |
285a6bda | 31 | <div id="graphdiv"></div> |
19e4f838 | 32 | <script type="text/javascript"> |
61b5e925 | 33 | g = new Dygraph( |
19e4f838 | 34 | document.getElementById("graphdiv"), // containing div |
285a6bda DV |
35 | "Date,Temperature\n" + // the data series |
36 | "2008-05-07,75\n" + | |
37 | "2008-05-08,70\n" + | |
8af5b23b | 38 | "2008-05-09,80\n" |
19e4f838 DV |
39 | ); |
40 | </script> | |
41 | </body> | |
42 | </html> | |
43 | ||
cd12bba0 DV |
44 | Making Changes |
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. | |
47 | ||
19e4f838 DV |
48 | License(s) |
49 | dygraphs uses: | |
1946f7ce DV |
50 | - rgbcolor.js (Public Domain) |
51 | - strftime.js (BSD License) | |
19e4f838 | 52 | - excanvas.js (Apache License) |
f18986e5 | 53 | - YUI compressor (BSD License) |
19e4f838 | 54 | |
1946f7ce DV |
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/ | |
f18986e5 | 58 | yui compressor: http://developer.yahoo.com/yui/compressor/ |
1946f7ce | 59 | |
19e4f838 | 60 | dygraphs is available under the MIT license, included in LICENSE.txt. |