dygraphs_README.txt 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. dygraphs JavaScript charting library
  2. Copyright (c) 2006-, Dan Vanderkam.
  3. Documentation: http://dygraphs.com/
  4. Support: http://groups.google.com/group/dygraphs-users
  5. Source: http://github.com/danvk/dygraphs
  6. Issues: http://code.google.com/p/dygraphs/
  7. The dygraphs JavaScript library produces interactive, zoomable charts of time series.
  8. Features
  9. - Plots time series without using an external server or Flash
  10. - Supports multiple data series
  11. - Supports error bands around data series
  12. - Displays values on mouseover
  13. - Interactive zoom
  14. - Adjustable averaging period
  15. - Customizable click-through actions
  16. - Compatible with the Google Visualization API
  17. Demo
  18. For a gallery and documentation, see http://dygraphs.com/
  19. Minimal Example
  20. <html>
  21. <head>
  22. <script type="text/javascript" src="dygraph-combined.js"></script>
  23. </head>
  24. <body>
  25. <div id="graphdiv"></div>
  26. <script type="text/javascript">
  27. g = new Dygraph(
  28. document.getElementById("graphdiv"), // containing div
  29. "Date,Temperature\n" + // the data series
  30. "2008-05-07,75\n" +
  31. "2008-05-08,70\n" +
  32. "2008-05-09,80\n",
  33. { } // the options
  34. );
  35. </script>
  36. </body>
  37. </html>
  38. Making Changes
  39. If you've made a change to dygraphs and would like to contribute it back to the
  40. community, please follow the guide at http://dygraphs.com/changes.html.
  41. License(s)
  42. dygraphs uses:
  43. - rgbcolor.js (Public Domain)
  44. - strftime.js (BSD License)
  45. - excanvas.js (Apache License)
  46. - YUI compressor (BSD License)
  47. - JsDoc Toolkit (MIT license)
  48. - stacktrace.js is public domain
  49. automated tests use:
  50. - auto_tests/lib/jquery-1.4.2.js (MIT & GPL2)
  51. - auto_tests/lib/Asserts.js (Apache 2.0 License)
  52. - auto-tests/lib/JsTestDriver-1.3.3cjar (Apache 2.0 License
  53. Linter uses:
  54. - JSHint (modified MIT license; prevents evil)
  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/
  59. jsdoc toolkit: http://code.google.com/p/jsdoc-toolkit/
  60. jquery: http://code.jquery.com/jquery-1.4.2.js
  61. Asserts.js: http://www.google.com/codesearch/p?#3tsINRJRCro/trunk/JsTestDriver/src/com/google/jstestdriver/javascript/Asserts.js
  62. JSTestDriver: http://code.google.com/p/js-test-driver/
  63. JSHint: jshint.com
  64. dygraphs is available under the MIT license, included in LICENSE.txt.