add licensing info
authorDan Vanderkam <danvdk@gmail.com>
Thu, 20 Aug 2009 01:06:26 +0000 (01:06 +0000)
committerDan Vanderkam <danvdk@gmail.com>
Thu, 20 Aug 2009 01:06:26 +0000 (01:06 +0000)
LICENSE.txt [new file with mode: 0644]
README [new file with mode: 0644]

diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644 (file)
index 0000000..536c0a8
--- /dev/null
@@ -0,0 +1,22 @@
+Copyright (c) 2009 Dan Vanderkam
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..abb225c
--- /dev/null
+++ b/README
@@ -0,0 +1,51 @@
+dygraphs JavaScript charting library
+Copyright (c) 2006-, Dan Vanderkam.
+http://code.google.com/p/dygraphs/
+
+The dygraphs JavaScript library produces produces interactive, zoomable charts of time series based on CSV files.
+
+Features
+- Plots time series without using an external server or Flash
+- Supports multiple data series
+- Supports error bands around data series
+- Displays values on mouseover
+- Interactive zoom
+- Adjustable averaging period
+- Customizable click-through actions
+
+Caveats
+- Requires Firefox 1.5+ or Safari/WebKit? 1.3+.
+- Internet Explorer is poorly supported.
+
+Demo
+For a gallery and documentation, see http://danvk.org/dygraphs/
+
+Minimal Example
+<html>
+<head>
+<script type="text/javascript" src="dygraph-combined.js"></script>
+</head>
+<body>
+<div id="graphdiv" style="width:400px; height:300px;"></div>
+<script type="text/javascript">
+  g = new DateGraph(
+        document.getElementById("graphdiv"),  // containing div
+        function() {                // function or path to CSV file.
+          return "20080507,75\n" +
+                 "20080508,70\n" +
+                 "20080509,80\n";
+        },
+        [ "Temperature" ],          // names of data series
+        {}                          // additional options (see wiki)
+      );
+</script>
+</body>
+</html>
+
+License(s)
+dygraphs uses:
+ - MochiKit (MIT License)
+ - PlotKit (BSD License)
+ - excanvas.js (Apache License)
+
+dygraphs is available under the MIT license, included in LICENSE.txt.