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