first commit
[wnstats.git] / public / javascripts / jqplot / README.txt
blob4932a00c6c17ea7bb8f4430ef93422c1c6909c3f
1 Title: jqPlot Readme
3 Pure JavaScript plotting plugin for jQuery.
5 To learn how to use jqPlot, start with the Basic Usage Instructions below.  Then read the
6 usage.txt and jqPlotOptions.txt files included with the distribution.
8 The jqPlot home page is at <http://www.jqplot.com/>.
10 Downloads can be found at <http://bitbucket.org/cleonello/jqplot/downloads/>.
12 The mailing list is at <http://groups.google.com/group/jqplot-users>.
14 Examples and unit tests are at <http://www.jqplot.com/tests/>.
16 Documentation is at <http://www.jqplot.com/docs/>.
18 The project page and source code are at <http://www.bitbucket.org/cleonello/jqplot/>.
20 Bugs, issues, feature requests: <http://www.bitbucket.org/cleonello/jqplot/issues/>.
22 Basic Usage Instructions:
24 jqPlot requires jQuery (1.4+ required for certain features). jQuery 1.4.4 is included in 
25 the distribution.  To use jqPlot include jQuery, the jqPlot jQuery plugin, the jqPlot css file and 
26 optionally the excanvas script to support IE version prior to IE 9 in your web page:
28 > <!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]-->
29 > <script language="javascript" type="text/javascript" src="jquery-1.4.4.min.js"></script>
30 > <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script>
31 > <link rel="stylesheet" type="text/css" href="jquery.jqplot.css" />
33 For usage instructions, see <jqPlot Usage> in usage.txt.  For available options, see
34 <jqPlot Options> in jqPlotOptions.txt.
36 Building from source:
38 If you've cloned the repository, you can build a distribution from source.
39 You need to have ant <http://ant.apache.org> installed.  You can simply 
40 type "ant" from the jqplot directory to build the default "all" target.  
41 There are 6 pertinent targets: clean, dist, min, docs, compress and all.  Use:
43 > ant -p
45 to get a description of the various build targets. 
47 Legal Notices:
49 Copyright (c) 2009-2010 Chris Leonello
50 jqPlot is currently available for use in all personal or commercial projects 
51 under both the MIT and GPL version 2.0 licenses. This means that you can 
52 choose the license that best suits your project and use it accordingly. 
54 Although not required, the author would appreciate an email letting him 
55 know of any substantial use of jqPlot.  You can reach the author at: 
56 chris at jqplot  or see http://www.jqplot.com/info.php .
58 If you are feeling kind and generous, consider supporting the project by
59 making a donation at: http://www.jqplot.com/donate.php .
61 jqPlot includes date instance methods and printf/sprintf functions by other authors:
63 Date instance methods:
65     author Ken Snyder (ken d snyder at gmail dot com)
66     date 2008-09-10
67     version 2.0.2 (http://kendsnyder.com/sandbox/date/)     
68     license Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/)
70 JavaScript printf/sprintf functions.
72     version 2007.04.27
73     author Ash Searle
74     http://hexmen.com/blog/2007/03/printf-sprintf/
75     http://hexmen.com/js/sprintf.js
76     The author (Ash Searle) has placed this code in the public domain:
77     "This code is unrestricted: you are free to use it however you like."