Delete excanvas and related IE workarounds
[dygraphs.git] / README
... / ...
CommitLineData
1dygraphs JavaScript charting library
2Version 1.1.0
3Copyright (c) 2006-, Dan Vanderkam.
4
5Documentation: http://dygraphs.com/
6Support: http://stackoverflow.com/questions/tagged/dygraphs
7 http://groups.google.com/group/dygraphs-users
8Source: http://github.com/danvk/dygraphs
9Issues: https://github.com/danvk/dygraphs/issues
10
11
12The dygraphs JavaScript library produces interactive, zoomable charts of time series.
13
14Features
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
19- Interactive zoom
20- Adjustable averaging period
21- Customizable click-through actions
22- Compatible with the Google Visualization API
23
24Demo
25For a gallery and documentation, see http://dygraphs.com/
26
27Minimal Example
28<html>
29<head>
30<script type="text/javascript" src="dygraph-combined.js"></script>
31</head>
32<body>
33<div id="graphdiv"></div>
34<script type="text/javascript">
35 g = new Dygraph(
36 document.getElementById("graphdiv"), // containing div
37 "Date,Temperature\n" + // the data series
38 "2008-05-07,75\n" +
39 "2008-05-08,70\n" +
40 "2008-05-09,80\n",
41 { } // the options
42 );
43</script>
44</body>
45</html>
46
47Making Changes
48If you've made a change to dygraphs and would like to contribute it back to the
49community, please follow the guide at http://dygraphs.com/changes.html.
50
51License(s)
52dygraphs uses:
53 - YUI compressor (BSD License)
54 - JsDoc Toolkit (MIT license)
55 - console-polyfill (MIT license)
56
57automated tests use:
58 - auto_tests/lib/jquery-1.4.2.js (MIT & GPL2)
59 - auto_tests/lib/Asserts.js (Apache 2.0 License)
60 - auto-tests/lib/JsTestDriver-1.3.3cjar (Apache 2.0 License
61
62yui compressor: http://developer.yahoo.com/yui/compressor/
63jsdoc toolkit: http://code.google.com/p/jsdoc-toolkit/
64
65jquery: http://code.jquery.com/jquery-1.4.2.js
66Asserts.js: http://www.google.com/codesearch/p?#3tsINRJRCro/trunk/JsTestDriver/src/com/google/jstestdriver/javascript/Asserts.js
67JSTestDriver: http://code.google.com/p/js-test-driver/
68
69dygraphs is available under the MIT license, included in LICENSE.txt.