1 | Title: jqPlot Readme |
---|
2 | |
---|
3 | Pure JavaScript plotting plugin for jQuery. |
---|
4 | |
---|
5 | To learn how to use jqPlot, start with the Basic Unsage Instructions below. Then read the |
---|
6 | usage.txt and jqPlotOptions.txt files included with the distribution. |
---|
7 | |
---|
8 | The jqPlot home page is at <http://www.jqplot.com/>. |
---|
9 | |
---|
10 | Downloads can be found at <http://bitbucket.org/cleonello/jqplot/downloads/>. |
---|
11 | |
---|
12 | The mailing list is at <http://groups.google.com/group/jqplot-users>. |
---|
13 | |
---|
14 | Examples and unit tests are at <http://www.jqplot.com/tests/>. |
---|
15 | |
---|
16 | Documentation is at <http://www.jqplot.com/docs/>. |
---|
17 | |
---|
18 | The project page and source code are at <http://www.bitbucket.org/cleonello/jqplot/>. |
---|
19 | |
---|
20 | Bugs, issues, feature requests: <http://www.bitbucket.org/cleonello/jqplot/issues/>. |
---|
21 | |
---|
22 | Basic Usage Instructions: |
---|
23 | |
---|
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: |
---|
27 | |
---|
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" /> |
---|
32 | |
---|
33 | For usage instructions, see <jqPlot Usage> in usage.txt. For available options, see |
---|
34 | <jqPlot Options> in jqPlotOptions.txt. |
---|
35 | |
---|
36 | Building from source: |
---|
37 | |
---|
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: |
---|
42 | |
---|
43 | > ant -p |
---|
44 | |
---|
45 | to get a description of the various build targets. |
---|
46 | |
---|
47 | Legal Notices: |
---|
48 | |
---|
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. |
---|
53 | |
---|
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 . |
---|
57 | |
---|
58 | If you are feeling kind and generous, consider supporting the project by |
---|
59 | making a donation at: http://www.jqplot.com/donate.php . |
---|
60 | |
---|
61 | jqPlot includes date instance methods and printf/sprintf functions by other authors: |
---|
62 | |
---|
63 | Date instance methods: |
---|
64 | |
---|
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/) |
---|
69 | |
---|
70 | JavaScript printf/sprintf functions. |
---|
71 | |
---|
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." |
---|