Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Content/jqplot/README.txt @ 9166

Last change on this file since 9166 was 9166, checked in by fschoepp, 11 years ago

#1888:

  • Model: OptimizationScenario may be a tree of algorithms (and problems)
  • Model: Renamed InputParameters to ProblemParameters (as they are the parameters of a problem)
  • Model: Added JobExecutionDetails which contain Repetitions + Group (resource to use)
  • ScenarioParser parses the new XML scenario files
  • Website + Model: You are now able to add/remove rows from a table (no JavaScript involved yet)
  • Website + Controller: Added repetitions (enables batch jobs) and group (resource to use) to OaaS which will be used by the controller to schedule the job
  • Website: Updated templates to use new model structure
  • Website + Scenarios: Added the new algorithm Benchmark Algorithm
  • Controller: Added a singleton to make the (Azure/Mockup)-DAL exchangeable
  • Controller: Added mockup classes for DAL + IScenarioManager
  • Website/Result Page: Line Diagrams will be added via JavaScript, crawling their data using AJAX
  • Website: Most configuration parameters can be set in the ServiceDefinition directly
  • Added a mockup for the Membership classes: These can be used if no network connection is available or if other parts of the app shall be tested
  • Scenarios: Updated TSP mappings to new xsd
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 Unsage 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.