├── jqplot └── dist │ ├── examples │ ├── jsondata.txt │ ├── ajax-loader.gif │ ├── images │ │ └── logo.jpg │ ├── jquery-ui │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ └── images │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ └── js │ │ │ ├── jquery.effects.blind.min.js │ │ │ └── jquery.effects.blind.js │ ├── .htaccess │ ├── topbanner.inc │ ├── syntaxhighlighter │ │ ├── scripts │ │ │ ├── shBrushJScript.min.js │ │ │ ├── shBrushXml.min.js │ │ │ ├── shAutoloader.min.js │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushJScript.js │ │ │ └── shBrushXml.js │ │ ├── MIT-LICENSE │ │ └── styles │ │ │ ├── shThemeDefault.min.css │ │ │ ├── shThemejqPlot.min.css │ │ │ ├── shThemeDefault.css │ │ │ └── shThemejqPlot.css │ ├── nav.inc │ ├── examples.min.css │ ├── example.min.js │ ├── pieTest2.js │ ├── examples.css │ ├── KCPsample4.csv │ ├── dateAxisLogAxisZooming.html │ ├── customHighlighterCursorTrendline.html │ ├── date-axes.html │ └── example.js │ ├── docs │ ├── styles │ │ ├── main.css │ │ └── 2.css │ ├── index.html │ ├── files │ │ └── images │ │ │ ├── logo.jpg │ │ │ ├── new.png │ │ │ ├── navdocs.png │ │ │ ├── navhome.png │ │ │ ├── sample3.png │ │ │ ├── background.jpg │ │ │ ├── basicline.png │ │ │ ├── dualaxis.png │ │ │ ├── samplesm.png │ │ │ ├── basiclogaxis.png │ │ │ ├── basicoptions.png │ │ │ ├── navdocsover.png │ │ │ ├── navdownload.png │ │ │ ├── navexamples.png │ │ │ ├── navhomeover.png │ │ │ ├── basiclogoptions.png │ │ │ ├── navdownloadover.png │ │ │ └── navexamplesover.png │ ├── search │ │ ├── NoResults.html │ │ ├── ClassesA.html │ │ ├── ClassesG.html │ │ ├── ClassesJ.html │ │ ├── ClassesS.html │ │ ├── ClassesT.html │ │ ├── ClassesV.html │ │ ├── ClassesH.html │ │ ├── FunctionsI.html │ │ ├── PropertiesZ.html │ │ ├── FunctionsC.html │ │ ├── HooksJ.html │ │ ├── FunctionsN.html │ │ ├── HooksA.html │ │ ├── HooksE.html │ │ ├── FunctionsZ.html │ │ ├── ClassesL.html │ │ ├── ClassesD.html │ │ ├── GeneralZ.html │ │ ├── FunctionsS.html │ │ ├── FunctionsG.html │ │ ├── FilesJ.html │ │ ├── GeneralW.html │ │ ├── PropertiesW.html │ │ ├── PropertiesV.html │ │ ├── PropertiesG.html │ │ ├── PropertiesO.html │ │ ├── FunctionsD.html │ │ ├── GeneralV.html │ │ ├── PropertiesU.html │ │ ├── FunctionsM.html │ │ ├── GeneralO.html │ │ ├── GeneralX.html │ │ ├── PropertiesX.html │ │ ├── GeneralY.html │ │ ├── PropertiesY.html │ │ ├── GeneralU.html │ │ ├── FunctionsR.html │ │ ├── GeneralG.html │ │ ├── GeneralJ.html │ │ ├── PropertiesE.html │ │ ├── GeneralE.html │ │ └── PropertiesR.html │ └── javascript │ │ └── searchdata.js │ ├── MIT-LICENSE.txt │ ├── copyright.txt │ ├── jqPlotCssStyling.txt │ ├── plugins │ ├── jqplot.ciParser.min.js │ ├── jqplot.trendline.min.js │ └── jqplot.ciParser.js │ ├── README.txt │ └── jquery.jqplot.min.css ├── zbxe-logo.php ├── zbxe-translation-export.php ├── zbxe-geolocation.php ├── zbxe-arvore.php ├── README.md └── zbxe-cat-chart-builder.php /jqplot/dist/examples/jsondata.txt: -------------------------------------------------------------------------------- 1 | [[1, 3, 2, 4, 6, 9]] -------------------------------------------------------------------------------- /jqplot/dist/docs/styles/main.css: -------------------------------------------------------------------------------- 1 | @import URL("1.css"); 2 | @import URL("2.css"); 3 | -------------------------------------------------------------------------------- /jqplot/dist/docs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jqplot/dist/examples/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/ajax-loader.gif -------------------------------------------------------------------------------- /jqplot/dist/examples/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/images/logo.jpg -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/logo.jpg -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/new.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navdocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navdocs.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navhome.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/sample3.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/background.jpg -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/basicline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/basicline.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/dualaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/dualaxis.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/samplesm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/samplesm.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/basiclogaxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/basiclogaxis.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/basicoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/basicoptions.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navdocsover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navdocsover.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navdownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navdownload.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navexamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navexamples.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navhomeover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navhomeover.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/basiclogoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/basiclogoptions.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navdownloadover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navdownloadover.png -------------------------------------------------------------------------------- /jqplot/dist/docs/files/images/navexamplesover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/docs/files/images/navexamplesover.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpawW/zabbix-extras/HEAD/jqplot/dist/examples/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /jqplot/dist/examples/.htaccess: -------------------------------------------------------------------------------- 1 | # This works on my local apache (with mod_php) 2 | # AddType application/x-httpd-php .php .html .htm 3 | 4 | # This works for dreamhost (php as fast cgi) 5 | # AddType php-cgi .php .html .htm 6 | 7 | IndexOptions +FancyIndexing +SuppressDescription NameWidth=* +FoldersFirst 8 | -------------------------------------------------------------------------------- /jqplot/dist/examples/topbanner.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zbxe-logo.php: -------------------------------------------------------------------------------- 1 | [:\\w-\\.]+)","xg").exec(i),c=[];if(f.attributes!=null){var e,h=new XRegExp("(? [\\w:\\-\\.]+)\\s*=\\s*(? \".*?\"|'.*?'|\\w+)","xg");while((e=h.exec(i))!=null){c.push(new g(e.name,f.index+e.index,"color1"));c.push(new g(e.value,f.index+e.index+e[0].indexOf(e.value),"string"))}}if(d!=null){c.push(new g(d.name,f.index+d[0].indexOf(d.name),"keyword"))}return c}this.regexList=[{regex:new XRegExp("(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)","gm"),css:"color2"},{regex:SyntaxHighlighter.regexLib.xmlComments,css:"comments"},{regex:new XRegExp("(<|<)[\\s\\/\\?]*(\\w+)(?.*?)[\\s\\/\\?]*(>|>)","sg"),func:b}]}a.prototype=new SyntaxHighlighter.Highlighter();a.aliases=["xml","xhtml","xslt","html"];SyntaxHighlighter.brushes.Xml=a;typeof(exports)!="undefined"?exports.Brush=a:null})(); -------------------------------------------------------------------------------- /zbxe-translation-export.php: -------------------------------------------------------------------------------- 1 | "; 16 | } 17 | 18 | $campos = "userid, tx_option, tx_value, st_ativo"; 19 | $res = DBselect("SELECT $campos FROM zbxe_preferences"); 20 | $i=0; 21 | while ($row = DBfetch($res)) { 22 | echo "preparaQuery(\"INSERT INTO zbxe_preferences ($campos) VALUES(" 23 | .quotestr($row['userid']).", " 24 | .quotestr($row['tx_option']).", " 25 | .quotestr($row['tx_value']).", " 26 | .quotestr($row['st_ativo']).")\");
"; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/scripts/shAutoloader.min.js: -------------------------------------------------------------------------------- 1 | eval(function(h,b,j,f,g,i){g=function(a){return(a35?String.fromCharCode(a+29):a.toString(36))};if(!"".replace(/^/,String)){while(j--){i[g(j)]=f[j]||g(j)}f=[function(a){return i[a]}];g=function(){return"\\w+"};j=1}while(j--){if(f[j]){h=h.replace(new RegExp("\\b"+g(j)+"\\b","g"),f[j])}}return h}('(2(){1 h=5;h.I=2(){2 n(c,a){4(1 d=0;d 2 | Previous Examples Next'; 38 | 39 | ?> 40 | 41 | -------------------------------------------------------------------------------- /jqplot/dist/docs/search/NoResults.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
No Matches
-------------------------------------------------------------------------------- /zbxe-geolocation.php: -------------------------------------------------------------------------------- 1 | 27 | '; 31 | require_once('include/page_footer.php'); 32 | ?> 33 | -------------------------------------------------------------------------------- /zbxe-arvore.php: -------------------------------------------------------------------------------- 1 | 27 | '; 31 | require_once('include/page_footer.php'); 32 | ?> 33 | -------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/scripts/shAutoloader.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(2(){1 h=5;h.I=2(){2 n(c,a){4(1 d=0;d 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesG.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesJ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesT.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesV.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesH.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsI.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
init, jqPlot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesZ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
zoom, $.jqplot.Cursor
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsC.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
copy, $.jqplot.ThemeEngine
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/HooksJ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsN.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
newTheme, $.jqplot.ThemeEngine
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/HooksA.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
addLegendRowHooks, $.jqplot.$.jqplot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/HooksE.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
eventListenerHooks, $.jqplot.$.jqplot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsZ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
zoomProxy, $.jqplot.Cursor.$.jqplot.Cursor
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesL.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/styles/shThemeDefault.min.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:white!important;}.syntaxhighlighter .line.alt1{background-color:white!important;}.syntaxhighlighter .line.alt2{background-color:white!important;}.syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#e0e0e0!important;}.syntaxhighlighter .line.highlighted.number{color:black!important;}.syntaxhighlighter table caption{color:black!important;}.syntaxhighlighter .gutter{color:#afafaf!important;}.syntaxhighlighter .gutter .line{border-right:3px solid #6ce26c!important;}.syntaxhighlighter .gutter .line.highlighted{background-color:#6ce26c!important;color:white!important;}.syntaxhighlighter.printing .line .content{border:none!important;}.syntaxhighlighter.collapsed{overflow:visible!important;}.syntaxhighlighter.collapsed .toolbar{color:blue!important;background:white!important;border:1px solid #6ce26c!important;}.syntaxhighlighter.collapsed .toolbar a{color:blue!important;}.syntaxhighlighter.collapsed .toolbar a:hover{color:red!important;}.syntaxhighlighter .toolbar{color:white!important;background:#6ce26c!important;border:none!important;}.syntaxhighlighter .toolbar a{color:white!important;}.syntaxhighlighter .toolbar a:hover{color:black!important;}.syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:black!important;}.syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#008200!important;}.syntaxhighlighter .string,.syntaxhighlighter .string a{color:blue!important;}.syntaxhighlighter .keyword{color:#069!important;}.syntaxhighlighter .preprocessor{color:gray!important;}.syntaxhighlighter .variable{color:#a70!important;}.syntaxhighlighter .value{color:#090!important;}.syntaxhighlighter .functions{color:#ff1493!important;}.syntaxhighlighter .constants{color:#06c!important;}.syntaxhighlighter .script{font-weight:bold!important;color:#069!important;background-color:none!important;}.syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:gray!important;}.syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#ff1493!important;}.syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:red!important;}.syntaxhighlighter .keyword{font-weight:bold!important;} -------------------------------------------------------------------------------- /jqplot/dist/docs/search/ClassesD.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/example.min.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){if(!$.jqplot._noCodeBlock){$("script.code").each(function(c){if($("pre.code").eq(c).length){$("pre.code").eq(c).text($(this).html())}else{var d=$('
');$("div.jqplot-target").eq(c).after(d);d.text($(this).html());d=null}});$("script.common").each(function(c){$("pre.common").eq(c).text($(this).html())});var b="";if($("script.include, link.include").length>0){if($("pre.include").length==0){var a=['
','

The charts on this page depend on the following files:

','
',"
"];a=$(a.join("\n"));$("div.example-content").append(a);a=null}$("script.include").each(function(c){if(b!==""){b+="\n"}b+=' 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
zoom, $.jqplot.Cursor
zoomProxy, $.jqplot.Cursor.$.jqplot.Cursor
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/jquery-ui/js/jquery.effects.blind.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.9pre 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Blind 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function( $, undefined ) { 14 | 15 | var rvertical = /up|down|vertical/, 16 | rpositivemotion = /up|left|vertical|horizontal/; 17 | 18 | $.effects.effect.blind = function( o, done ) { 19 | // Create element 20 | var el = $( this ), 21 | props = [ "position", "top", "bottom", "left", "right", "height", "width" ], 22 | mode = $.effects.setMode( el, o.mode || "hide" ), 23 | direction = o.direction || "up", 24 | vertical = rvertical.test( direction ), 25 | ref = vertical ? "height" : "width", 26 | ref2 = vertical ? "top" : "left", 27 | motion = rpositivemotion.test( direction ), 28 | animation = {}, 29 | show = mode === "show", 30 | wrapper, distance, top; 31 | 32 | // if already wrapped, the wrapper's properties are my property. #6245 33 | if ( el.parent().is( ".ui-effects-wrapper" ) ) { 34 | $.effects.save( el.parent(), props ); 35 | } else { 36 | $.effects.save( el, props ); 37 | } 38 | el.show(); 39 | top = parseInt(el.css('top'), 10); 40 | wrapper = $.effects.createWrapper( el ).css({ 41 | overflow: "hidden" 42 | }); 43 | 44 | distance = vertical ? wrapper[ ref ]() + top : wrapper[ ref ](); 45 | 46 | animation[ ref ] = show ? distance : 0; 47 | if ( !motion ) { 48 | el 49 | .css( vertical ? "bottom" : "right", 0 ) 50 | .css( vertical ? "top" : "left", "" ) 51 | .css({ position: "absolute" }); 52 | animation[ ref2 ] = show ? 0 : distance; 53 | } 54 | 55 | // start at 0 if we are showing 56 | if ( show ) { 57 | wrapper.css( ref, 0 ); 58 | if ( ! motion ) { 59 | wrapper.css( ref2, distance ); 60 | } 61 | } 62 | 63 | // Animate 64 | wrapper.animate( animation, { 65 | duration: o.duration, 66 | easing: o.easing, 67 | queue: false, 68 | complete: function() { 69 | if ( mode === "hide" ) { 70 | el.hide(); 71 | } 72 | $.effects.restore( el, props ); 73 | $.effects.removeWrapper( el ); 74 | done(); 75 | } 76 | }); 77 | 78 | }; 79 | 80 | })(jQuery); 81 | -------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/scripts/shBrushXml.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | function process(match, regexInfo) 25 | { 26 | var constructor = SyntaxHighlighter.Match, 27 | code = match[0], 28 | tag = new XRegExp('(<|<)[\\s\\/\\?]*(?[:\\w-\\.]+)', 'xg').exec(code), 29 | result = [] 30 | ; 31 | 32 | if (match.attributes != null) 33 | { 34 | var attributes, 35 | regex = new XRegExp('(? [\\w:\\-\\.]+)' + 36 | '\\s*=\\s*' + 37 | '(? ".*?"|\'.*?\'|\\w+)', 38 | 'xg'); 39 | 40 | while ((attributes = regex.exec(code)) != null) 41 | { 42 | result.push(new constructor(attributes.name, match.index + attributes.index, 'color1')); 43 | result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string')); 44 | } 45 | } 46 | 47 | if (tag != null) 48 | result.push( 49 | new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword') 50 | ); 51 | 52 | return result; 53 | } 54 | 55 | this.regexList = [ 56 | { regex: new XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' }, // 57 | { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // 58 | { regex: new XRegExp('(<|<)[\\s\\/\\?]*(\\w+)(?.*?)[\\s\\/\\?]*(>|>)', 'sg'), func: process } 59 | ]; 60 | }; 61 | 62 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 63 | Brush.aliases = ['xml', 'xhtml', 'xslt', 'html']; 64 | 65 | SyntaxHighlighter.brushes.Xml = Brush; 66 | 67 | // CommonJS 68 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 69 | })(); 70 | -------------------------------------------------------------------------------- /jqplot/dist/copyright.txt: -------------------------------------------------------------------------------- 1 | /** 2 | * jqPlot 3 | * Pure JavaScript plotting plugin using jQuery 4 | * 5 | * Version: @VERSION 6 | * 7 | * Copyright (c) 2009-2011 Chris Leonello 8 | * jqPlot is currently available for use in all personal or commercial projects 9 | * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL 10 | * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can 11 | * choose the license that best suits your project and use it accordingly. 12 | * 13 | * Although not required, the author would appreciate an email letting him 14 | * know of any substantial use of jqPlot. You can reach the author at: 15 | * chris at jqplot dot com or see http://www.jqplot.com/info.php . 16 | * 17 | * If you are feeling kind and generous, consider supporting the project by 18 | * making a donation at: http://www.jqplot.com/donate.php . 19 | * 20 | * sprintf functions contained in jqplot.sprintf.js by Ash Searle: 21 | * 22 | * version 2007.04.27 23 | * author Ash Searle 24 | * http://hexmen.com/blog/2007/03/printf-sprintf/ 25 | * http://hexmen.com/js/sprintf.js 26 | * The author (Ash Searle) has placed this code in the public domain: 27 | * "This code is unrestricted: you are free to use it however you like." 28 | * 29 | * included jsDate library by Chris Leonello: 30 | * 31 | * Copyright (c) 2010-2011 Chris Leonello 32 | * 33 | * jsDate is currently available for use in all personal or commercial projects 34 | * under both the MIT and GPL version 2.0 licenses. This means that you can 35 | * choose the license that best suits your project and use it accordingly. 36 | * 37 | * jsDate borrows many concepts and ideas from the Date Instance 38 | * Methods by Ken Snyder along with some parts of Ken's actual code. 39 | * 40 | * Ken's origianl Date Instance Methods and copyright notice: 41 | * 42 | * Ken Snyder (ken d snyder at gmail dot com) 43 | * 2008-09-10 44 | * version 2.0.2 (http://kendsnyder.com/sandbox/date/) 45 | * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/) 46 | * 47 | * jqplotToImage function based on Larry Siden's export-jqplot-to-png.js. 48 | * Larry has generously given permission to adapt his code for inclusion 49 | * into jqPlot. 50 | * 51 | * Larry's original code can be found here: 52 | * 53 | * https://github.com/lsiden/export-jqplot-to-png 54 | * 55 | * 56 | */ 57 | -------------------------------------------------------------------------------- /jqplot/dist/jqPlotCssStyling.txt: -------------------------------------------------------------------------------- 1 | Title: jqPlot CSS Customization 2 | 3 | Much of the styling of jqPlot is done by css. The jqPlot css file is, unremarkably, 4 | jquery.jqplot.css and resides in the same directory as jqPlot itself. 5 | 6 | There exist some styling related javascript properties on the plot objects themselves 7 | (like fontStyle, fontSize, etc.). These can be set with the options object at plot creation. 8 | Generally, setting these options is *NOT* the preferred way to customize the look of the 9 | plot. Use the css file instead. *These options are deprecated and may disappear*. The 10 | exceptions are certain background and color options which control attributes of something 11 | renderered on a canvas. This would be line color, grid background, etc. These must 12 | be set by the options object. For a list of available options, see . 13 | 14 | Objects in the plot that can be customized by css are given a css class like ".jqplot-*". 15 | For example, the plot title will have a ".jqplot-title" class, the axes ".jqplot-axis", etc. 16 | 17 | Currently assigned classes in jqPlot 18 | are as follows: 19 | 20 | .jqplot-target - Styles for the plot target div. These will be cascaded down 21 | to all plot elements according to css rules. 22 | 23 | .jqplot-axis - Styles for all axes 24 | 25 | .jqplot-xaxis - Styles applied to the primary x axis only. 26 | 27 | .jqplot-yaxis - Styles applied to the primary y axis only. 28 | 29 | .jqplot-x2axis, .jqplot-x3axis, ... - Styles applied to the 2nd, 3rd, etc. x axis only. 30 | 31 | .jqplot-y2axis, .jqplot-y3axis, ... - Styles applied to the 2nd, 3rd, etc.y axis only. 32 | 33 | .jqplot-axis-tick - Styles applied to all axis ticks 34 | 35 | .jqplot-xaxis-tick - Styles applied to primary x axis ticks only. 36 | 37 | .jqplot-x2axis-tick - Styles applied to secondary x axis ticks only. 38 | 39 | .jqplot-yaxis-tick - Styles applied to primary y axis ticks only. 40 | 41 | .jqplot-y2axis-tick - Styles applied to secondary y axis ticks only. 42 | 43 | table.jqplot-table-legend - Styles applied to the legend box table. 44 | 45 | .jqplot-title - Styles applied to the title. 46 | 47 | .jqplot-cursor-tooltip - Styles applied to the cursor tooltip 48 | 49 | .jqplot-highlighter-tooltip - Styles applied to the highlighter tooltip. 50 | 51 | div.jqplot-table-legend-swatch - the div element used for the colored swatch on the legend. 52 | 53 | Note that axes will be assigned 2 classes like: class=".jqplot-axis .jqplot-xaxis". -------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsG.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
get, $.jqplot.ThemeEngine
getThemeNames, $.jqplot.ThemeEngine
getThemes, $.jqplot.ThemeEngine
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FilesJ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralW.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
waterfall, $.jqplot.BarRenderer
wickColor, $.jqplot.OHLCRenderer
widthRatio, $.jqplot.FunnelRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesW.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
waterfall, $.jqplot.BarRenderer
wickColor, $.jqplot.OHLCRenderer
widthRatio, $.jqplot.FunnelRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/pieTest2.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | 3 | $.jqplot.config.enablePlugins = true; 4 | 5 | s1 = [['a',2], ['b',6], ['c',7], ['d',10]]; 6 | s2 = [['a', 4], ['b', 7], ['c', 6], ['d', 3]]; 7 | s3 = [['a', 2], ['b', 1], ['c', 3], ['d', 3]]; 8 | s4 = [['a', 4], ['b', 3], ['c', 2], ['d', 1]]; 9 | 10 | s5 = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]; 11 | 12 | plot1 = $.jqplot('chart1', [s1], { 13 | seriesDefaults:{ 14 | renderer:$.jqplot.PieRenderer 15 | }, 16 | legend: {show:true} 17 | }); 18 | 19 | plot2 = $.jqplot('chart2', [s2], { 20 | seriesDefaults: { 21 | renderer:$.jqplot.PieRenderer, 22 | rendererOptions:{ 23 | sliceMargin: 4, 24 | startAngle: -90 25 | } 26 | } 27 | }); 28 | 29 | plot3 = $.jqplot('chart3', [s3], { 30 | captureRightClick: true, 31 | seriesDefaults:{ 32 | renderer:$.jqplot.PieRenderer, 33 | shadow: false, 34 | rendererOptions:{ 35 | startAngle: 90, 36 | sliceMargin: 4, 37 | highlightMouseDown: true 38 | } 39 | }, 40 | legend: { 41 | show: true, 42 | location: 'e', 43 | placement: 'outside' 44 | } 45 | }); 46 | 47 | plot5 = $.jqplot('chart5', [s5], { 48 | seriesDefaults:{ 49 | renderer:$.jqplot.PieRenderer 50 | } 51 | }); 52 | 53 | plot6 = $.jqplot('chart6', [[1,2,3,4]]); 54 | 55 | $('#chart1').bind('jqplotDataClick', 56 | function (ev, seriesIndex, pointIndex, data) { 57 | $('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); 58 | } 59 | ); 60 | 61 | $('#chart2').bind('jqplotDataHighlight', 62 | function (ev, seriesIndex, pointIndex, data) { 63 | $('#info2').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); 64 | } 65 | ); 66 | 67 | $('#chart2').bind('jqplotDataUnhighlight', 68 | function (ev) { 69 | $('#info2').html('Nothing'); 70 | } 71 | ); 72 | 73 | $('#chart3').bind('jqplotDataRightClick', 74 | function (ev, seriesIndex, pointIndex, data) { 75 | $('#info3').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data); 76 | } 77 | ); 78 | 79 | $(document).unload(function() {$('*').unbind(); }); 80 | }); -------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesV.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
varyBarColor, $.jqplot.BarRenderer
varyBlockColors, $.jqplot.BlockRenderer
varyBubbleColors, $.jqplot.BubbleRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesG.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
grid, jqPlot
groups, $.jqplot.BarRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/styles/shThemejqPlot.min.css: -------------------------------------------------------------------------------- 1 | .syntaxhighlighter{background-color:transparent!important;}.syntaxhighlighter .line.alt1{background-color:transparent!important;}.syntaxhighlighter .line.alt2{background-color:transparent!important;}.syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2{background-color:#e0e0e0!important;}.syntaxhighlighter .line.highlighted.number{color:black!important;}.syntaxhighlighter table caption{color:black!important;}.syntaxhighlighter .gutter{color:#afafaf!important;}.syntaxhighlighter .gutter .line{border-right:3px solid #6ce26c!important;}.syntaxhighlighter .gutter .line.highlighted{background-color:#6ce26c!important;color:white!important;}.syntaxhighlighter.printing .line .content{border:none!important;}.syntaxhighlighter.collapsed{overflow:visible!important;}.syntaxhighlighter.collapsed .toolbar{color:blue!important;background:white!important;border:1px solid #6ce26c!important;}.syntaxhighlighter.collapsed .toolbar a{color:blue!important;}.syntaxhighlighter.collapsed .toolbar a:hover{color:red!important;}.syntaxhighlighter .toolbar{color:white!important;background:#6ce26c!important;border:none!important;}.syntaxhighlighter .toolbar a{color:white!important;}.syntaxhighlighter .toolbar a:hover{color:black!important;}.syntaxhighlighter .plain,.syntaxhighlighter .plain a{color:black!important;}.syntaxhighlighter .comments,.syntaxhighlighter .comments a{color:#008200!important;}.syntaxhighlighter .string,.syntaxhighlighter .string a{color:blue!important;}.syntaxhighlighter .keyword{color:#069!important;}.syntaxhighlighter .preprocessor{color:gray!important;}.syntaxhighlighter .variable{color:#a70!important;}.syntaxhighlighter .value{color:#090!important;}.syntaxhighlighter .functions{color:#ff1493!important;}.syntaxhighlighter .constants{color:#06c!important;}.syntaxhighlighter .script{font-weight:bold!important;color:#069!important;background-color:none!important;}.syntaxhighlighter .color1,.syntaxhighlighter .color1 a{color:gray!important;}.syntaxhighlighter .color2,.syntaxhighlighter .color2 a{color:#ff1493!important;}.syntaxhighlighter .color3,.syntaxhighlighter .color3 a{color:red!important;}.syntaxhighlighter .keyword{font-weight:bold!important;}.syntaxhighlighter a,.syntaxhighlighter div,.syntaxhighlighter code,.syntaxhighlighter table,.syntaxhighlighter table td,.syntaxhighlighter table tr,.syntaxhighlighter table tbody,.syntaxhighlighter table thead,.syntaxhighlighter table caption,.syntaxhighlighter textarea{line-height:1.3em!important;}div.syntaxhighlighter{font-size:.85em!important;}div.include div.syntaxhighlighter table td.code .line{margin-top:.1em!important;} -------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesO.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
objects, $.jqplot.CanvasOverlay
offset, $.jqplot.shadowRenderer
openColor, $.jqplot.OHLCRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsD.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
destroy, jqPlot
drawSeries, jqPlot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralV.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
varyBarColor, $.jqplot.BarRenderer
varyBlockColors, $.jqplot.BlockRenderer
varyBubbleColors, $.jqplot.BubbleRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/examples.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin:0px; 3 | padding: 0px; 4 | font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; 5 | } 6 | 7 | div.logo { 8 | position: relative; 9 | height: 94px; 10 | padding: 0px; 11 | margin-bottom: 30px; 12 | top: 0px; 13 | background-image: url('./images/logo.jpg'); 14 | background-repeat: no-repeat; 15 | background-color: #292929; 16 | } 17 | 18 | div.nav { 19 | position:relative; 20 | top: 70px; 21 | text-align: right; 22 | } 23 | 24 | a.nav span { 25 | font-size: 11px; 26 | position: relative; 27 | bottom: 2px; 28 | } 29 | 30 | a.nav:visited { 31 | text-decoration: none; 32 | border: 0px; 33 | color: #aaaaaa; 34 | } 35 | 36 | a.nav, a.nav:link { 37 | border: 0px; 38 | text-decoration: none; 39 | font-family: Tahoma, "Helvetica Neue", "Trebuchet MS", Verdana, Arial, sans-serif; 40 | font-size: 16px; 41 | color: #aaaaaa; 42 | margin-right: 11px; 43 | } 44 | 45 | a.nav:hover { 46 | text-decoration: none; 47 | border: 0px; 48 | color: #E0771C; 49 | } 50 | 51 | a.nav:active { 52 | text-decoration: none; 53 | border: 0px; 54 | color: #E0771C; 55 | } 56 | 57 | div.example-content { 58 | margin: 30px 50px; 59 | } 60 | 61 | div.example-nav { 62 | margin-bottom:30px; 63 | } 64 | 65 | pre.code-block{ 66 | background: #D8F4DC; 67 | border: 1px solid rgb(200, 200, 200); 68 | padding-top: 1em; 69 | padding-left: 3em; 70 | padding-bottom: 1em; 71 | margin-top: 1em; 72 | margin-bottom: 3em; 73 | 74 | } 75 | 76 | pre.code { 77 | /* background: #D8F4DC;*/ 78 | border: 1px solid rgb(200, 200, 200); 79 | padding-top: 1em; 80 | padding-left: 3em; 81 | padding-bottom: 1em; 82 | margin-top: 1em; 83 | margin-bottom: 4em; 84 | 85 | } 86 | 87 | div.include { 88 | margin-bottom: 2em; 89 | } 90 | 91 | p { 92 | margin: 2em 0; 93 | } 94 | 95 | .jqplot-image-button { 96 | margin-bottom: 15px; 97 | margin-top: 15px; 98 | } 99 | 100 | div.jqplot-image-container { 101 | display: none; 102 | background-color: #fff; 103 | border: 1px solid #999; 104 | display: inline-block; 105 | margin-top: 25px; 106 | } 107 | 108 | div.jqplot-image-container-header { 109 | font-size: 1.0em; 110 | font-weight: bold; 111 | padding: 5px 15px; 112 | background-color: #eee; 113 | } 114 | 115 | div.jqplot-image-container-content { 116 | padding: 15px; 117 | } 118 | 119 | a.jqplot-image-container-close { 120 | float: right; 121 | } 122 | 123 | div.example-plot { 124 | width: 500px; 125 | height: 300px; 126 | } 127 | 128 | .jqplot-table-legend-label { 129 | white-space: nowrap; 130 | } 131 | 132 | div.syntaxhighlighter { 133 | margin-top: 4em !important; 134 | margin-bottom: 3em !important; 135 | } -------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesU.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
upBodyColor, $.jqplot.OHLCRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsM.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
moveBlock, $.jqplot.BlockRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralO.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
objects, $.jqplot.CanvasOverlay
offset, $.jqplot.shadowRenderer
openColor, $.jqplot.OHLCRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralX.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
xmax, HorizontalLine
xmin, HorizontalLine
xoffset, Legend
xpadding, $.jqplot.PointLabels
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesX.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
xmax, HorizontalLine
xmin, HorizontalLine
xoffset, Legend
xpadding, $.jqplot.PointLabels
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralY.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
y, HorizontalLine
yoffset, Legend
ypadding, $.jqplot.PointLabels
yvalues, $.jqplot.Highlighter
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesY.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
y, HorizontalLine
yoffset, Legend
ypadding, $.jqplot.PointLabels
yvalues, $.jqplot.Highlighter
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralU.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
upBodyColor, $.jqplot.OHLCRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jqPlot 3 | * Pure JavaScript plotting plugin using jQuery 4 | * 5 | * Version: 1.0.0b2_r1012 6 | * 7 | * Copyright (c) 2009-2011 Chris Leonello 8 | * jqPlot is currently available for use in all personal or commercial projects 9 | * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL 10 | * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can 11 | * choose the license that best suits your project and use it accordingly. 12 | * 13 | * Although not required, the author would appreciate an email letting him 14 | * know of any substantial use of jqPlot. You can reach the author at: 15 | * chris at jqplot dot com or see http://www.jqplot.com/info.php . 16 | * 17 | * If you are feeling kind and generous, consider supporting the project by 18 | * making a donation at: http://www.jqplot.com/donate.php . 19 | * 20 | * sprintf functions contained in jqplot.sprintf.js by Ash Searle: 21 | * 22 | * version 2007.04.27 23 | * author Ash Searle 24 | * http://hexmen.com/blog/2007/03/printf-sprintf/ 25 | * http://hexmen.com/js/sprintf.js 26 | * The author (Ash Searle) has placed this code in the public domain: 27 | * "This code is unrestricted: you are free to use it however you like." 28 | * 29 | * included jsDate library by Chris Leonello: 30 | * 31 | * Copyright (c) 2010-2011 Chris Leonello 32 | * 33 | * jsDate is currently available for use in all personal or commercial projects 34 | * under both the MIT and GPL version 2.0 licenses. This means that you can 35 | * choose the license that best suits your project and use it accordingly. 36 | * 37 | * jsDate borrows many concepts and ideas from the Date Instance 38 | * Methods by Ken Snyder along with some parts of Ken's actual code. 39 | * 40 | * Ken's origianl Date Instance Methods and copyright notice: 41 | * 42 | * Ken Snyder (ken d snyder at gmail dot com) 43 | * 2008-09-10 44 | * version 2.0.2 (http://kendsnyder.com/sandbox/date/) 45 | * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/) 46 | * 47 | * jqplotToImage function based on Larry Siden's export-jqplot-to-png.js. 48 | * Larry has generously given permission to adapt his code for inclusion 49 | * into jqPlot. 50 | * 51 | * Larry's original code can be found here: 52 | * 53 | * https://github.com/lsiden/export-jqplot-to-png 54 | * 55 | * 56 | */ 57 | (function(a){a.jqplot.ciParser=function(g,l){var m=[],o,n,h,f,e,c;if(typeof(g)=="string"){g=a.jqplot.JSON.parse(g,d)}else{if(typeof(g)=="object"){for(e in g){for(h=0;h=0){i=/^\/Date\((-?[0-9]+)\)\/$/.exec(k);if(i){return parseInt(i[1],10)}}return k}}for(var b in g){o=[];n=g[b];switch(b){case"PriceTicks":for(h=0;h 2 | 3 | 4 | 5 | Zabbix-CAT Chart Builder 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | 16 | 17 | 24 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 |
87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /jqplot/dist/README.txt: -------------------------------------------------------------------------------- 1 | Title: jqPlot Readme 2 | 3 | Pure JavaScript plotting plugin for jQuery. 4 | 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. 7 | 8 | The jqPlot home page is at . 9 | 10 | Downloads can be found at . 11 | 12 | The mailing list is at . 13 | 14 | Examples and unit tests are at . 15 | 16 | Documentation is at . 17 | 18 | The project page and source code are at . 19 | 20 | Bugs, issues, feature requests: . 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 | > 29 | > 30 | > 31 | > 32 | 33 | For usage instructions, see in usage.txt. For available options, see 34 | 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 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." 78 | -------------------------------------------------------------------------------- /jqplot/dist/jquery.jqplot.min.css: -------------------------------------------------------------------------------- 1 | .jqplot-target{position:relative;color:#666;font-family:"Trebuchet MS",Arial,Helvetica,sans-serif;font-size:1em;}.jqplot-axis{font-size:.75em;}.jqplot-xaxis{margin-top:10px;}.jqplot-x2axis{margin-bottom:10px;}.jqplot-yaxis{margin-right:10px;}.jqplot-y2axis,.jqplot-y3axis,.jqplot-y4axis,.jqplot-y5axis,.jqplot-y6axis,.jqplot-y7axis,.jqplot-y8axis,.jqplot-y9axis,.jqplot-yMidAxis{margin-left:10px;margin-right:10px;}.jqplot-axis-tick,.jqplot-xaxis-tick,.jqplot-yaxis-tick,.jqplot-x2axis-tick,.jqplot-y2axis-tick,.jqplot-y3axis-tick,.jqplot-y4axis-tick,.jqplot-y5axis-tick,.jqplot-y6axis-tick,.jqplot-y7axis-tick,.jqplot-y8axis-tick,.jqplot-y9axis-tick,.jqplot-yMidAxis-tick{position:absolute;white-space:pre;}.jqplot-xaxis-tick{top:0;left:15px;vertical-align:top;}.jqplot-x2axis-tick{bottom:0;left:15px;vertical-align:bottom;}.jqplot-yaxis-tick{right:0;top:15px;text-align:right;}.jqplot-yaxis-tick.jqplot-breakTick{right:-20px;margin-right:0;padding:1px 5px 1px 5px;z-index:2;font-size:1.5em;}.jqplot-y2axis-tick,.jqplot-y3axis-tick,.jqplot-y4axis-tick,.jqplot-y5axis-tick,.jqplot-y6axis-tick,.jqplot-y7axis-tick,.jqplot-y8axis-tick,.jqplot-y9axis-tick{left:0;top:15px;text-align:left;}.jqplot-yMidAxis-tick{text-align:center;white-space:nowrap;}.jqplot-xaxis-label{margin-top:10px;font-size:11pt;position:absolute;}.jqplot-x2axis-label{margin-bottom:10px;font-size:11pt;position:absolute;}.jqplot-yaxis-label{margin-right:10px;font-size:11pt;position:absolute;}.jqplot-yMidAxis-label{font-size:11pt;position:absolute;}.jqplot-y2axis-label,.jqplot-y3axis-label,.jqplot-y4axis-label,.jqplot-y5axis-label,.jqplot-y6axis-label,.jqplot-y7axis-label,.jqplot-y8axis-label,.jqplot-y9axis-label{font-size:11pt;margin-left:10px;position:absolute;}.jqplot-meterGauge-tick{font-size:.75em;color:#999;}.jqplot-meterGauge-label{font-size:1em;color:#999;}table.jqplot-table-legend{margin-top:12px;margin-bottom:12px;margin-left:12px;margin-right:12px;}table.jqplot-table-legend,table.jqplot-cursor-legend{background-color:rgba(255,255,255,0.6);border:1px solid #ccc;position:absolute;font-size:.75em;}td.jqplot-table-legend{vertical-align:middle;}td.jqplot-seriesToggle:hover,td.jqplot-seriesToggle:active{cursor:pointer;}.jqplot-table-legend .jqplot-series-hidden{text-decoration:line-through;}div.jqplot-table-legend-swatch-outline{border:1px solid #ccc;padding:1px;}div.jqplot-table-legend-swatch{width:0;height:0;border-top-width:5px;border-bottom-width:5px;border-left-width:6px;border-right-width:6px;border-top-style:solid;border-bottom-style:solid;border-left-style:solid;border-right-style:solid;}.jqplot-title{top:0;left:0;padding-bottom:.5em;font-size:1.2em;}table.jqplot-cursor-tooltip{border:1px solid #ccc;font-size:.75em;}.jqplot-cursor-tooltip{border:1px solid #ccc;font-size:.75em;white-space:nowrap;background:rgba(208,208,208,0.5);padding:1px;}.jqplot-highlighter-tooltip,.jqplot-canvasOverlay-tooltip{border:1px solid #ccc;font-size:.75em;white-space:nowrap;background:rgba(208,208,208,0.5);padding:1px;}.jqplot-point-label{font-size:.75em;z-index:2;}td.jqplot-cursor-legend-swatch{vertical-align:middle;text-align:center;}div.jqplot-cursor-legend-swatch{width:1.2em;height:.7em;}.jqplot-error{text-align:center;}.jqplot-error-message{position:relative;top:46%;display:inline-block;}div.jqplot-bubble-label{font-size:.8em;padding-left:2px;padding-right:2px;color:rgb(20%,20%,20%);}div.jqplot-bubble-label.jqplot-bubble-label-highlight{background:rgba(90%,90%,90%,0.7);}div.jqplot-noData-container{text-align:center;background-color:rgba(96%,96%,96%,0.3);} -------------------------------------------------------------------------------- /jqplot/dist/docs/search/FunctionsR.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
redraw, jqPlot
reInitialize, jqPlot
remove, $.jqplot.ThemeEngine
rename, $.jqplot.ThemeEngine
replot, jqPlot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/styles/shThemeDefault.css: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | .syntaxhighlighter { 18 | background-color: white !important; 19 | } 20 | .syntaxhighlighter .line.alt1 { 21 | background-color: white !important; 22 | } 23 | .syntaxhighlighter .line.alt2 { 24 | background-color: white !important; 25 | } 26 | .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 { 27 | background-color: #e0e0e0 !important; 28 | } 29 | .syntaxhighlighter .line.highlighted.number { 30 | color: black !important; 31 | } 32 | .syntaxhighlighter table caption { 33 | color: black !important; 34 | } 35 | .syntaxhighlighter .gutter { 36 | color: #afafaf !important; 37 | } 38 | .syntaxhighlighter .gutter .line { 39 | border-right: 3px solid #6ce26c !important; 40 | } 41 | .syntaxhighlighter .gutter .line.highlighted { 42 | background-color: #6ce26c !important; 43 | color: white !important; 44 | } 45 | .syntaxhighlighter.printing .line .content { 46 | border: none !important; 47 | } 48 | .syntaxhighlighter.collapsed { 49 | overflow: visible !important; 50 | } 51 | .syntaxhighlighter.collapsed .toolbar { 52 | color: blue !important; 53 | background: white !important; 54 | border: 1px solid #6ce26c !important; 55 | } 56 | .syntaxhighlighter.collapsed .toolbar a { 57 | color: blue !important; 58 | } 59 | .syntaxhighlighter.collapsed .toolbar a:hover { 60 | color: red !important; 61 | } 62 | .syntaxhighlighter .toolbar { 63 | color: white !important; 64 | background: #6ce26c !important; 65 | border: none !important; 66 | } 67 | .syntaxhighlighter .toolbar a { 68 | color: white !important; 69 | } 70 | .syntaxhighlighter .toolbar a:hover { 71 | color: black !important; 72 | } 73 | .syntaxhighlighter .plain, .syntaxhighlighter .plain a { 74 | color: black !important; 75 | } 76 | .syntaxhighlighter .comments, .syntaxhighlighter .comments a { 77 | color: #008200 !important; 78 | } 79 | .syntaxhighlighter .string, .syntaxhighlighter .string a { 80 | color: blue !important; 81 | } 82 | .syntaxhighlighter .keyword { 83 | color: #006699 !important; 84 | } 85 | .syntaxhighlighter .preprocessor { 86 | color: gray !important; 87 | } 88 | .syntaxhighlighter .variable { 89 | color: #aa7700 !important; 90 | } 91 | .syntaxhighlighter .value { 92 | color: #009900 !important; 93 | } 94 | .syntaxhighlighter .functions { 95 | color: #ff1493 !important; 96 | } 97 | .syntaxhighlighter .constants { 98 | color: #0066cc !important; 99 | } 100 | .syntaxhighlighter .script { 101 | font-weight: bold !important; 102 | color: #006699 !important; 103 | background-color: none !important; 104 | } 105 | .syntaxhighlighter .color1, .syntaxhighlighter .color1 a { 106 | color: gray !important; 107 | } 108 | .syntaxhighlighter .color2, .syntaxhighlighter .color2 a { 109 | color: #ff1493 !important; 110 | } 111 | .syntaxhighlighter .color3, .syntaxhighlighter .color3 a { 112 | color: red !important; 113 | } 114 | 115 | .syntaxhighlighter .keyword { 116 | font-weight: bold !important; 117 | } 118 | -------------------------------------------------------------------------------- /jqplot/dist/docs/styles/2.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | height: 100%; 3 | } 4 | 5 | /* 6 | div.Firefox { 7 | height: 100%; 8 | } 9 | */ 10 | 11 | .MTitle { 12 | font-variant: normal; 13 | } 14 | 15 | .MLink { 16 | font-style: normal; 17 | } 18 | 19 | .CBody { 20 | margin-left: 30px; 21 | margin-right: 30px; 22 | } 23 | 24 | p { 25 | text-indent: 0; 26 | margin-bottom: 1em; 27 | } 28 | 29 | .CBody p { 30 | /* 31 | padding-top: 4px; 32 | padding-bottom: 4px; 33 | */ 34 | } 35 | 36 | #Menu { 37 | margin-top: 94px; 38 | border: 0px; 39 | } 40 | 41 | body.ContentPage { 42 | background-image: url('../../images/background.jpg'); 43 | background-color: #818181; 44 | background-position: left top; 45 | background-repeat: repeat-x; 46 | } 47 | 48 | .MGroup a:link, 49 | .MGroup a:hover, 50 | .MGroup a:visited { color: #bfbfbf; margin-right: 10px } 51 | .MGroup a:active { color: #f58f07; margin-right: 10px } 52 | 53 | 54 | .MEntry a:link, 55 | .MEntry a:hover, 56 | .MEntry a:visited { color: #bfbfbf; margin-right: 0 } 57 | .MEntry a:active { color: #f58f07; margin-right: 0 } 58 | 59 | #Footer { 60 | color: #bfbfbf; 61 | } 62 | 63 | #Footer a:link, #Footer a:hover, #Footer a:visited { 64 | color: #5c93f0; 65 | } 66 | 67 | #MainTopic div.CTitle.logo { 68 | color: #292929; 69 | font-size: 0px; 70 | font-style: normal; 71 | font-weight: normal; 72 | border-width: 0px; 73 | padding: 0px; 74 | margin: 0px; 75 | background-position: left top; 76 | background-repeat: no-repeat; 77 | background-image: url('../../images/logo.jpg'); 78 | background-color: #292929; 79 | height: 94px; 80 | position: relative; 81 | 82 | } 83 | 84 | #MainTopic h1.CTitle a { 85 | display: none; 86 | } 87 | 88 | 89 | #MainTopic div.CBody p:first-child { 90 | margin-top: 24px; 91 | } 92 | 93 | .ContentPage #Content { 94 | border: 0px; 95 | /* height: 100%; */ 96 | } 97 | 98 | #IPageLogo { 99 | width: 780px; 100 | color: #292929; 101 | font-style: normal; 102 | font-weight: normal; 103 | border-width: 0px; 104 | padding: 0px; 105 | margin: 0px; 106 | background-position: left top; 107 | background-repeat: no-repeat; 108 | background-image: url('../../images/logo.jpg'); 109 | background-color: #292929; 110 | height: 94px; 111 | position: relative; 112 | left: 27ex; 113 | } 114 | 115 | #Menu, #IPageLogo { 116 | font-size: 9pt; 117 | } 118 | 119 | body.IndexPage { 120 | background-image: url('../../images/background.jpg'); 121 | } 122 | 123 | /*#IPageLogo:hover { 124 | cursor: pointer; 125 | }*/ 126 | 127 | .IPageTitle { 128 | background-color:#FFFFF0; 129 | color: #333333; 130 | border: 0px; 131 | } 132 | 133 | 134 | 135 | div.nav { 136 | position:relative; 137 | top: 70px; 138 | text-align: right; 139 | } 140 | 141 | a.nav span { 142 | font-size: 11px; 143 | position: relative; 144 | bottom: 2px; 145 | } 146 | 147 | a.nav:visited { 148 | text-decoration: none; 149 | border: 0px; 150 | color: #aaaaaa; 151 | } 152 | 153 | a.nav, a.nav:link { 154 | border: 0px; 155 | text-decoration: none; 156 | font-family: Tahoma, "Helvetica Neue", "Trebuchet MS", Verdana, Arial, sans-serif; 157 | font-size: 16px; 158 | color: #aaaaaa; 159 | margin-right: 11px; 160 | } 161 | 162 | a.nav:hover { 163 | text-decoration: none; 164 | border: 0px; 165 | color: #E0771C; 166 | } 167 | 168 | a.nav:active { 169 | text-decoration: none; 170 | border: 0px; 171 | color: #E0771C; 172 | } 173 | 174 | 175 | -------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralG.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
get, $.jqplot.ThemeEngine
getThemeNames, $.jqplot.ThemeEngine
getThemes, $.jqplot.ThemeEngine
grid, jqPlot
groups, $.jqplot.BarRenderer
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralJ.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesE.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
edgeTolerance, $.jqplot.PointLabels
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/docs/search/GeneralE.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
edgeTolerance, $.jqplot.PointLabels
eventListenerHooks, $.jqplot.$.jqplot
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/KCPsample4.csv: -------------------------------------------------------------------------------- 1 | Product or service,v01,v02,v03,v04,v05,v06,v07,v08,v09,v10,v11,v12,v13,v14,v15,v16,v17,v18,v19,v20 2 | Rice,15.8442,13.0993,11.2898,10.7892,10.252,9.0165,8.5287,7.7442,6.9867,6.5213,5.9473,5.4766,4.9214,4.6398,3.8935,3.5228,3.0128,2.4847,2.0357,1.0672 3 | Bread and other cereals,1.7703,2.2535,2.2753,2.7927,2.2509,2.4341,2.5518,2.5547,2.4204,2.4186,2.4261,2.2927,2.4386,2.2295,2.2203,1.915,1.8791,1.7941,1.6567,0.9296 4 | Meat,8.3728,8.1221,8.3989,7.9758,8.8246,8.2377,8.432,7.8466,7.5343,7.1171,6.9801,6.9349,5.8307,5.7089,4.927,4.2237,3.6872,3.1429,2.581,1.3766 5 | Fish and seafood,9.1249,8.7326,7.6122,7.8577,7.1625,6.8527,6.5158,6.1715,6.1298,5.8702,5.3456,4.9906,4.4424,4.3022,3.5298,3.405,2.9977,2.4159,2.0832,1.1499 6 | Fruits and vegetables,8.0508,7.7875,7.6534,7.4448,7.3702,7.4188,7.3882,7.1647,6.9617,6.6576,6.6077,6.4823,5.9117,5.8149,5.505,5.5355,5.0907,4.569,4.3049,2.6325 7 | Other food products,10.4408,9.8278,9.9293,9.5176,9.6658,9.2359,9.2842,8.6497,8.7656,8.2962,8.155,7.7294,7.3674,6.9888,6.2995,5.7314,5.2703,4.6947,3.9614,2.2509 8 | Catering services,4.1883,4.7514,5.3198,5.8819,5.1732,5.5764,6.1713,6.7915,6.8511,7.2681,7.1461,8.109,9.2649,9.5322,11.2138,12.8299,12.9621,13.8936,13.7828,10.0525 9 | Non-alcoholic beverages,0.6641,0.8454,0.9018,1.0461,1.0113,1.235,1.279,1.3049,1.5024,1.4471,1.5358,1.5796,1.6471,1.6443,1.6562,1.6763,1.6097,1.5039,1.3752,0.864 10 | Alcoholic beverages,0.5221,0.6997,0.8513,0.8849,0.9168,0.9099,0.8339,0.9921,1.1169,1.1764,1.1936,1.1415,1.1181,1.2889,1.1378,1.023,1.1283,1.0417,0.9839,0.587 11 | Tobacco and narcotics,1.0969,1.188,1.0713,1.2803,1.1787,1.148,1.3229,1.1726,1.3764,1.3887,1.4011,1.3034,1.4368,1.5017,1.4899,1.4123,1.3168,1.1407,0.8458,0.38 12 | Clothing and footwear,2.275,2.5511,3.1025,2.9834,3.2857,3.7625,3.1928,3.7071,4.0364,3.629,3.9258,3.2208,3.7113,3.3166,3.4775,3.429,3.6121,3.4569,3.8416,4.1323 13 | Rentals (actual or imputed) and maintenance and repair of the dwelling,16.0654,15.719,16.3773,16.0175,15.8853,16.132,16.1309,16.3491,15.8512,16.4743,16.2862,15.7327,16.2793,16.6329,17.4903,17.4425,17.3413,18.3527,18.5029,15.2763 14 | Water supply and miscellaneous services related to the dwelling,1.1145,1.176,1.1183,1.0411,1.0058,1.0796,1.0321,1.0714,1.1117,1.0278,1.136,1.1397,1.1556,1.2206,1.2871,1.2361,1.2111,1.2312,1.1545,0.7881 15 | Electricity gas and other fuels,4.5928,4.7558,4.8855,4.4684,4.6677,4.6038,4.7789,4.6098,4.4171,4.5078,4.4137,4.4645,4.2693,4.2836,4.1709,4.159,3.8423,3.9957,3.6816,2.5785 16 | Furnishing household equipment and routine household maintenance,2.1027,2.1576,2.0721,2.0623,2.3498,2.2573,2.2866,2.3766,2.2488,2.3665,2.3445,2.2474,2.3345,2.2479,2.158,2.355,2.0744,2.2269,3.0474,3.8925 17 | Health,1.2709,1.6007,1.3996,1.612,1.4649,1.5875,1.7056,1.7315,1.7378,2.0401,2.3265,2.1096,2.0513,2.1548,2.0634,2.2206,1.8427,2.4817,2.3066,2.1685 18 | Transport,4.6414,5.6167,5.9571,6.5372,7.0242,7.6332,7.9823,8.3906,9.112,9.6872,10.2014,11.0074,11.375,11.6753,12.0489,12.0692,13.2962,13.2183,14.6559,32.0912 19 | Communication,0.2334,0.3642,0.5267,0.5911,0.8888,1.1633,1.0997,1.76,1.9811,2.1708,2.931,3.2634,3.6254,4.107,4.6944,5.0941,5.9984,6.2419,6.6059,5.8353 20 | Recreation and culture,2.2553,2.8903,2.9564,3.2839,3.4822,3.255,3.1666,3.4245,3.4066,3.8536,3.6333,4.0331,4.4847,4.3552,4.2768,4.1439,4.7196,4.6585,4.4286,3.921 21 | Education,0.3437,0.3282,0.4805,0.3881,0.4796,0.9766,0.6589,0.6443,1.0423,0.7941,1.064,1.5504,1.3977,1.5226,1.8344,1.9186,2.3022,2.8188,2.8424,2.7792 22 | Personal care,3.4466,3.5641,3.5711,3.4219,3.2835,3.3569,3.3416,3.4544,3.3675,3.2806,3.118,3.1881,3.2252,3.0588,3.0051,2.9868,3.0361,2.8972,2.9611,2.2867 23 | Other miscellaneous goods and services,1.5831,1.9691,2.2498,2.122,2.3766,2.1273,2.3165,2.0884,2.0421,2.0067,1.8809,2.0027,1.7115,1.7734,1.6204,1.6702,1.769,1.7391,2.3607,2.9604 24 | Food and non-alcoholic beverages,58.4561,55.4196,53.3806,53.3059,51.7105,50.007,50.1509,48.2276,47.1521,45.5962,44.1436,43.5952,41.8242,40.8606,39.2451,38.8396,36.5095,34.4988,31.7809,20.3231 25 | Non food,41.5439,44.5804,46.6194,46.6941,48.2895,49.993,49.8491,51.7724,52.8479,54.4038,55.8564,56.4048,58.1758,59.1394,60.7549,61.1604,63.4905,65.5012,68.2191,79.6769 26 | -------------------------------------------------------------------------------- /jqplot/dist/examples/syntaxhighlighter/styles/shThemejqPlot.css: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | .syntaxhighlighter { 18 | background-color: transparent !important; 19 | } 20 | .syntaxhighlighter .line.alt1 { 21 | background-color: transparent !important; 22 | } 23 | .syntaxhighlighter .line.alt2 { 24 | background-color: transparent !important; 25 | } 26 | .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 { 27 | background-color: #e0e0e0 !important; 28 | } 29 | .syntaxhighlighter .line.highlighted.number { 30 | color: black !important; 31 | } 32 | .syntaxhighlighter table caption { 33 | color: black !important; 34 | } 35 | .syntaxhighlighter .gutter { 36 | color: #afafaf !important; 37 | } 38 | .syntaxhighlighter .gutter .line { 39 | border-right: 3px solid #6ce26c !important; 40 | } 41 | .syntaxhighlighter .gutter .line.highlighted { 42 | background-color: #6ce26c !important; 43 | color: white !important; 44 | } 45 | .syntaxhighlighter.printing .line .content { 46 | border: none !important; 47 | } 48 | .syntaxhighlighter.collapsed { 49 | overflow: visible !important; 50 | } 51 | .syntaxhighlighter.collapsed .toolbar { 52 | color: blue !important; 53 | background: white !important; 54 | border: 1px solid #6ce26c !important; 55 | } 56 | .syntaxhighlighter.collapsed .toolbar a { 57 | color: blue !important; 58 | } 59 | .syntaxhighlighter.collapsed .toolbar a:hover { 60 | color: red !important; 61 | } 62 | .syntaxhighlighter .toolbar { 63 | color: white !important; 64 | background: #6ce26c !important; 65 | border: none !important; 66 | } 67 | .syntaxhighlighter .toolbar a { 68 | color: white !important; 69 | } 70 | .syntaxhighlighter .toolbar a:hover { 71 | color: black !important; 72 | } 73 | .syntaxhighlighter .plain, .syntaxhighlighter .plain a { 74 | color: black !important; 75 | } 76 | .syntaxhighlighter .comments, .syntaxhighlighter .comments a { 77 | color: #008200 !important; 78 | } 79 | .syntaxhighlighter .string, .syntaxhighlighter .string a { 80 | color: blue !important; 81 | } 82 | .syntaxhighlighter .keyword { 83 | color: #006699 !important; 84 | } 85 | .syntaxhighlighter .preprocessor { 86 | color: gray !important; 87 | } 88 | .syntaxhighlighter .variable { 89 | color: #aa7700 !important; 90 | } 91 | .syntaxhighlighter .value { 92 | color: #009900 !important; 93 | } 94 | .syntaxhighlighter .functions { 95 | color: #ff1493 !important; 96 | } 97 | .syntaxhighlighter .constants { 98 | color: #0066cc !important; 99 | } 100 | .syntaxhighlighter .script { 101 | font-weight: bold !important; 102 | color: #006699 !important; 103 | background-color: none !important; 104 | } 105 | .syntaxhighlighter .color1, .syntaxhighlighter .color1 a { 106 | color: gray !important; 107 | } 108 | .syntaxhighlighter .color2, .syntaxhighlighter .color2 a { 109 | color: #ff1493 !important; 110 | } 111 | .syntaxhighlighter .color3, .syntaxhighlighter .color3 a { 112 | color: red !important; 113 | } 114 | 115 | .syntaxhighlighter .keyword { 116 | font-weight: bold !important; 117 | } 118 | 119 | .syntaxhighlighter a, 120 | .syntaxhighlighter div, 121 | .syntaxhighlighter code, 122 | .syntaxhighlighter table, 123 | .syntaxhighlighter table td, 124 | .syntaxhighlighter table tr, 125 | .syntaxhighlighter table tbody, 126 | .syntaxhighlighter table thead, 127 | .syntaxhighlighter table caption, 128 | .syntaxhighlighter textarea { 129 | line-height: 1.3em !important; 130 | } 131 | 132 | div.syntaxhighlighter { 133 | font-size: 0.85em !important; 134 | } 135 | 136 | div.include div.syntaxhighlighter table td.code .line { 137 | margin-top: 0.1em !important; 138 | } 139 | -------------------------------------------------------------------------------- /jqplot/dist/docs/javascript/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = { 2 | "General": { 3 | "Symbols": true, 4 | "Numbers": false, 5 | "A": true, 6 | "B": true, 7 | "C": true, 8 | "D": true, 9 | "E": true, 10 | "F": true, 11 | "G": true, 12 | "H": true, 13 | "I": true, 14 | "J": true, 15 | "K": false, 16 | "L": true, 17 | "M": true, 18 | "N": true, 19 | "O": true, 20 | "P": true, 21 | "Q": false, 22 | "R": true, 23 | "S": true, 24 | "T": true, 25 | "U": true, 26 | "V": true, 27 | "W": true, 28 | "X": true, 29 | "Y": true, 30 | "Z": true 31 | }, 32 | "Functions": { 33 | "Symbols": false, 34 | "Numbers": false, 35 | "A": false, 36 | "B": false, 37 | "C": true, 38 | "D": true, 39 | "E": false, 40 | "F": false, 41 | "G": true, 42 | "H": false, 43 | "I": true, 44 | "J": false, 45 | "K": false, 46 | "L": false, 47 | "M": true, 48 | "N": true, 49 | "O": false, 50 | "P": false, 51 | "Q": false, 52 | "R": true, 53 | "S": true, 54 | "T": false, 55 | "U": false, 56 | "V": false, 57 | "W": false, 58 | "X": false, 59 | "Y": false, 60 | "Z": true 61 | }, 62 | "Files": { 63 | "Symbols": false, 64 | "Numbers": false, 65 | "A": false, 66 | "B": false, 67 | "C": false, 68 | "D": false, 69 | "E": false, 70 | "F": false, 71 | "G": false, 72 | "H": false, 73 | "I": false, 74 | "J": true, 75 | "K": false, 76 | "L": false, 77 | "M": false, 78 | "N": false, 79 | "O": false, 80 | "P": false, 81 | "Q": false, 82 | "R": false, 83 | "S": false, 84 | "T": false, 85 | "U": false, 86 | "V": false, 87 | "W": false, 88 | "X": false, 89 | "Y": false, 90 | "Z": false 91 | }, 92 | "Classes": { 93 | "Symbols": true, 94 | "Numbers": false, 95 | "A": true, 96 | "B": false, 97 | "C": false, 98 | "D": true, 99 | "E": false, 100 | "F": false, 101 | "G": true, 102 | "H": true, 103 | "I": false, 104 | "J": true, 105 | "K": false, 106 | "L": true, 107 | "M": false, 108 | "N": false, 109 | "O": false, 110 | "P": false, 111 | "Q": false, 112 | "R": false, 113 | "S": true, 114 | "T": true, 115 | "U": false, 116 | "V": true, 117 | "W": false, 118 | "X": false, 119 | "Y": false, 120 | "Z": false 121 | }, 122 | "Hooks": { 123 | "Symbols": false, 124 | "Numbers": false, 125 | "A": true, 126 | "B": false, 127 | "C": false, 128 | "D": false, 129 | "E": true, 130 | "F": false, 131 | "G": false, 132 | "H": false, 133 | "I": false, 134 | "J": true, 135 | "K": false, 136 | "L": false, 137 | "M": false, 138 | "N": false, 139 | "O": false, 140 | "P": true, 141 | "Q": false, 142 | "R": false, 143 | "S": false, 144 | "T": false, 145 | "U": false, 146 | "V": false, 147 | "W": false, 148 | "X": false, 149 | "Y": false, 150 | "Z": false 151 | }, 152 | "Properties": { 153 | "Symbols": false, 154 | "Numbers": false, 155 | "A": true, 156 | "B": true, 157 | "C": true, 158 | "D": true, 159 | "E": true, 160 | "F": true, 161 | "G": true, 162 | "H": true, 163 | "I": true, 164 | "J": false, 165 | "K": false, 166 | "L": true, 167 | "M": true, 168 | "N": true, 169 | "O": true, 170 | "P": true, 171 | "Q": false, 172 | "R": true, 173 | "S": true, 174 | "T": true, 175 | "U": true, 176 | "V": true, 177 | "W": true, 178 | "X": true, 179 | "Y": true, 180 | "Z": true 181 | } 182 | } -------------------------------------------------------------------------------- /jqplot/dist/docs/search/PropertiesR.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
Loading...
ringColor, $.jqplot.MeterGaugeRenderer
ringMargin, $.jqplot.DonutRenderer
ringWidth, $.jqplot.MeterGaugeRenderer
rowSpacing, Legend
Searching...
No Matches
-------------------------------------------------------------------------------- /jqplot/dist/examples/dateAxisLogAxisZooming.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Zooming with Date and Log Axes 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 28 |
29 | 30 | 32 | 33 |
34 | 35 | 36 | 37 | 38 | 39 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 |
100 | 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /jqplot/dist/examples/customHighlighterCursorTrendline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Highlighting, Dragging Points, Cursor and Trend Lines. 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 28 |
29 | 30 | 32 | 33 |
34 | 35 | 36 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /jqplot/dist/examples/date-axes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Date Axes 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 28 |
29 | 30 | 32 | 33 | 34 | 35 |

Date axes support is provided through the dateAxisRenderer plugin. Date axes expand javascripts native date handling capabilities. This allow dates to be input in almost any unambiguous form, not just in milliseconds!

36 | 37 |

Note, although jqPlot will parse most any human readable date, it is safest to use javascript time stamps when possible. Also, it is best to specify a date and time and not just a date alone. This is due to inconsistent browser handling of local time vs. UTC with bare dates.

38 | 39 |
40 | 41 |

 42 | 
 43 | 

Date Axes also provide powerful formatting features. This allows custom formatter strings to be used to format axis tick labels precisely the way you want.

44 | 45 |
46 | 47 |

 48 |   
 49 | 
 63 | 
 64 | 
 65 | 
 82 | 
 83 | 
 84 | 
 85 | 
 86 | 
 87 | 
 88 |     
 89 |     
 90 |     
 91 |     
 92 | 
 93 | 
 94 | 
 95 | 
 96 |     
 97 | 
 98 | 
 99 | 
100 | 
101 | 	
102 | 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /jqplot/dist/examples/example.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | if (!$.jqplot._noCodeBlock) { 3 | $('script.code').each(function(index) { 4 | if ($('pre.code').eq(index).length ) { 5 | $('pre.code').eq(index).text($(this).html()); 6 | } 7 | else { 8 | // var str = $(this).text(); 9 | // $('div.jqplot-target').eq(index).after($('
'+str+'
')); 10 | var pre = $('
');
 11 |                 $('div.jqplot-target').eq(index).after(pre);
 12 |                 pre.text($(this).html());
 13 |                 pre = null;
 14 |             }
 15 |         });
 16 | 
 17 |         $('script.common').each(function(index) {
 18 |             $('pre.common').eq(index).text($(this).html());
 19 |         });
 20 | 
 21 |         var elstr='';
 22 |         if ($('script.include, link.include').length > 0) {
 23 | 
 24 |             if ($('pre.include').length == 0) {
 25 |                 var temp = [
 26 |                     '
', 27 | '

The charts on this page depend on the following files:

', 28 | '
',
 29 |                     '
' 30 | ]; 31 | 32 | temp = $(temp.join('\n')); 33 | $('div.example-content').append(temp); 34 | temp = null; 35 | } 36 | 37 | 38 | $('script.include').each(function(index) { 39 | if (elstr !== '') { 40 | elstr += '\n'; 41 | } 42 | elstr += ''; 43 | }); 44 | 45 | $('link.include').each(function(index) { 46 | if (elstr !== '') { 47 | elstr += '\n'; 48 | } 49 | elstr += ''; 50 | }) 51 | 52 | $('pre.include').text(elstr); 53 | } 54 | 55 | else { 56 | $('pre.include').remove(); 57 | $('div.include').remove(); 58 | } 59 | } 60 | 61 | if (!$.jqplot.use_excanvas) { 62 | $('div.jqplot-target').each(function(){ 63 | var outerDiv = $(document.createElement('div')); 64 | var header = $(document.createElement('div')); 65 | var div = $(document.createElement('div')); 66 | 67 | outerDiv.append(header); 68 | outerDiv.append(div); 69 | 70 | outerDiv.addClass('jqplot-image-container'); 71 | header.addClass('jqplot-image-container-header'); 72 | div.addClass('jqplot-image-container-content'); 73 | 74 | header.html('Right Click to Save Image As...'); 75 | 76 | var close = $(document.createElement('a')); 77 | close.addClass('jqplot-image-container-close'); 78 | close.html('Close'); 79 | close.attr('href', '#'); 80 | close.click(function() { 81 | $(this).parents('div.jqplot-image-container').hide(500); 82 | }) 83 | header.append(close); 84 | 85 | $(this).after(outerDiv); 86 | outerDiv.hide(); 87 | 88 | outerDiv = header = div = close = null; 89 | 90 | if (!$.jqplot._noToImageButton) { 91 | var btn = $(document.createElement('button')); 92 | btn.text('View Plot Image'); 93 | btn.addClass('jqplot-image-button'); 94 | btn.bind('click', {chart: $(this)}, function(evt) { 95 | var imgelem = evt.data.chart.jqplotToImageElem(); 96 | var div = $(this).nextAll('div.jqplot-image-container').first(); 97 | div.children('div.jqplot-image-container-content').empty(); 98 | div.children('div.jqplot-image-container-content').append(imgelem); 99 | div.show(500); 100 | div = null; 101 | }); 102 | 103 | $(this).after(btn); 104 | btn.after('
'); 105 | btn = null; 106 | } 107 | }); 108 | } 109 | 110 | SyntaxHighlighter.defaults['toolbar'] = true; 111 | SyntaxHighlighter.all(); 112 | 113 | $(document).unload(function() {$('*').unbind(); }); 114 | }); -------------------------------------------------------------------------------- /jqplot/dist/plugins/jqplot.trendline.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * jqPlot 3 | * Pure JavaScript plotting plugin using jQuery 4 | * 5 | * Version: 1.0.0b2_r1012 6 | * 7 | * Copyright (c) 2009-2011 Chris Leonello 8 | * jqPlot is currently available for use in all personal or commercial projects 9 | * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL 10 | * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can 11 | * choose the license that best suits your project and use it accordingly. 12 | * 13 | * Although not required, the author would appreciate an email letting him 14 | * know of any substantial use of jqPlot. You can reach the author at: 15 | * chris at jqplot dot com or see http://www.jqplot.com/info.php . 16 | * 17 | * If you are feeling kind and generous, consider supporting the project by 18 | * making a donation at: http://www.jqplot.com/donate.php . 19 | * 20 | * sprintf functions contained in jqplot.sprintf.js by Ash Searle: 21 | * 22 | * version 2007.04.27 23 | * author Ash Searle 24 | * http://hexmen.com/blog/2007/03/printf-sprintf/ 25 | * http://hexmen.com/js/sprintf.js 26 | * The author (Ash Searle) has placed this code in the public domain: 27 | * "This code is unrestricted: you are free to use it however you like." 28 | * 29 | * included jsDate library by Chris Leonello: 30 | * 31 | * Copyright (c) 2010-2011 Chris Leonello 32 | * 33 | * jsDate is currently available for use in all personal or commercial projects 34 | * under both the MIT and GPL version 2.0 licenses. This means that you can 35 | * choose the license that best suits your project and use it accordingly. 36 | * 37 | * jsDate borrows many concepts and ideas from the Date Instance 38 | * Methods by Ken Snyder along with some parts of Ken's actual code. 39 | * 40 | * Ken's origianl Date Instance Methods and copyright notice: 41 | * 42 | * Ken Snyder (ken d snyder at gmail dot com) 43 | * 2008-09-10 44 | * version 2.0.2 (http://kendsnyder.com/sandbox/date/) 45 | * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/) 46 | * 47 | * jqplotToImage function based on Larry Siden's export-jqplot-to-png.js. 48 | * Larry has generously given permission to adapt his code for inclusion 49 | * into jqPlot. 50 | * 51 | * Larry's original code can be found here: 52 | * 53 | * https://github.com/lsiden/export-jqplot-to-png 54 | * 55 | * 56 | */ 57 | (function(f){f.jqplot.Trendline=function(){this.show=f.jqplot.config.enablePlugins;this.color="#666666";this.renderer=new f.jqplot.LineRenderer();this.rendererOptions={marker:{show:false}};this.label="";this.type="linear";this.shadow=true;this.markerRenderer={show:false};this.lineWidth=1.5;this.shadowAngle=45;this.shadowOffset=1;this.shadowAlpha=0.07;this.shadowDepth=3;this.isTrendline=true};f.jqplot.postSeriesInitHooks.push(e);f.jqplot.postDrawSeriesHooks.push(g);f.jqplot.addLegendRowHooks.push(a);function a(k){var j=null;if(k.trendline&&k.trendline.show){var i=k.trendline.label.toString();if(i){j={label:i,color:k.trendline.color}}}return j}function e(m,k,j,i,l){if(this._type&&(this._type==="line"||this._type=="bar")){this.trendline=new f.jqplot.Trendline();i=i||{};f.extend(true,this.trendline,{color:this.color},j.trendline,i.trendline);this.trendline.renderer.init.call(this.trendline,null)}}function g(m,i){i=f.extend(true,{},this.trendline,i);if(this.trendline&&i.show){var k;var l=i.data||this.data;k=c(l,this.trendline.type);var j=i.gridData||this.renderer.makeGridData.call(this,k.data);this.trendline.renderer.draw.call(this.trendline,m,j,{showLine:true,shadow:this.trendline.shadow})}}function b(w,v,n){var u=(n==null)?"linear":n;var s=w.length;var t;var z;var o=0;var m=0;var r=0;var q=0;var l=0;var j=[];var k=[];if(u=="linear"){k=w;j=v}else{if(u=="exp"||u=="exponential"){for(var p=0;p plot = $.jqplot('mychart', [data], { dataRenderer: $.jqplot.ciParser, ... }); 37 | * 38 | * Where data is an object in JSON format or a JSON encoded string conforming to the 39 | * City Index API spec. 40 | * 41 | * Note that calling the renderer function is handled internally by jqPlot. The 42 | * user does not have to call the function. The parameters described below will 43 | * automatically be passed to the ciParser function. 44 | * 45 | * Parameters: 46 | * data - JSON encoded string or object. 47 | * plot - reference to jqPlot Plot object. 48 | * 49 | * Returns: 50 | * data array in jqPlot format. 51 | * 52 | */ 53 | $.jqplot.ciParser = function (data, plot) { 54 | var ret = [], 55 | line, 56 | temp, 57 | i, j, k, kk; 58 | 59 | if (typeof(data) == "string") { 60 | data = $.jqplot.JSON.parse(data, handleStrings); 61 | } 62 | 63 | else if (typeof(data) == "object") { 64 | for (k in data) { 65 | for (i=0; i= 0) { 86 | //here we will try to extract the ticks from the Date string in the "value" fields of JSON returned data 87 | a = /^\/Date\((-?[0-9]+)\)\/$/.exec(value); 88 | if (a) { 89 | return parseInt(a[1], 10); 90 | } 91 | } 92 | return value; 93 | } 94 | } 95 | 96 | for (var prop in data) { 97 | line = []; 98 | temp = data[prop]; 99 | switch (prop) { 100 | case "PriceTicks": 101 | for (i=0; i