Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Scripts/jqPlot/README.txt @ 9617

Last change on this file since 9617 was 9617, checked in by pfleck, 11 years ago

#2063:
Started integrating Hive statistics into statistics web project.
Added jqPlot library for charting.

File size: 3.1 KB
Line 
1Title: jqPlot Readme
2
3Pure JavaScript plotting plugin for jQuery.
4
5To learn how to use jqPlot, start with the Basic Usage Instructions below.  Then read the
6usage.txt and jqPlotOptions.txt files included with the distribution.
7
8The jqPlot home page is at <http://www.jqplot.com/>.
9
10Downloads can be found at <http://bitbucket.org/cleonello/jqplot/downloads/>.
11
12The mailing list is at <http://groups.google.com/group/jqplot-users>.
13
14Examples and unit tests are at <http://www.jqplot.com/tests/>.
15
16Documentation is at <http://www.jqplot.com/docs/>.
17
18The project page and source code are at <http://www.bitbucket.org/cleonello/jqplot/>.
19
20Bugs, issues, feature requests: <http://www.bitbucket.org/cleonello/jqplot/issues/>.
21
22Basic Usage Instructions:
23
24jqPlot requires jQuery (1.4+ required for certain features). jQuery 1.4.4 is included in
25the distribution.  To use jqPlot include jQuery, the jqPlot jQuery plugin, the jqPlot css file and
26optionally 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
33For usage instructions, see <jqPlot Usage> in usage.txt.  For available options, see
34<jqPlot Options> in jqPlotOptions.txt.
35
36Building from source:
37
38If you've cloned the repository, you can build a distribution from source.
39You need to have ant <http://ant.apache.org> installed.  You can simply
40type "ant" from the jqplot directory to build the default "all" target. 
41There are 6 pertinent targets: clean, dist, min, docs, compress and all.  Use:
42
43> ant -p
44
45to get a description of the various build targets.
46
47Legal Notices:
48
49Copyright (c) 2009-2010 Chris Leonello
50jqPlot is currently available for use in all personal or commercial projects
51under both the MIT and GPL version 2.0 licenses. This means that you can
52choose the license that best suits your project and use it accordingly.
53
54Although not required, the author would appreciate an email letting him
55know of any substantial use of jqPlot.  You can reach the author at:
56chris at jqplot  or see http://www.jqplot.com/info.php .
57
58If you are feeling kind and generous, consider supporting the project by
59making a donation at: http://www.jqplot.com/donate.php .
60
61jqPlot includes date instance methods and printf/sprintf functions by other authors:
62
63Date 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
70JavaScript 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."
Note: See TracBrowser for help on using the repository browser.