pkg-charts-debug.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:55k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /*! SWFObject v2.2 <http://code.google.com/p/swfobject/> 
  2.     is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
  3. */
  4. var swfobject = function() {
  5.     
  6.     var UNDEF = "undefined",
  7.         OBJECT = "object",
  8.         SHOCKWAVE_FLASH = "Shockwave Flash",
  9.         SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
  10.         FLASH_MIME_TYPE = "application/x-shockwave-flash",
  11.         EXPRESS_INSTALL_ID = "SWFObjectExprInst",
  12.         ON_READY_STATE_CHANGE = "onreadystatechange",
  13.         
  14.         win = window,
  15.         doc = document,
  16.         nav = navigator,
  17.         
  18.         plugin = false,
  19.         domLoadFnArr = [main],
  20.         regObjArr = [],
  21.         objIdArr = [],
  22.         listenersArr = [],
  23.         storedAltContent,
  24.         storedAltContentId,
  25.         storedCallbackFn,
  26.         storedCallbackObj,
  27.         isDomLoaded = false,
  28.         isExpressInstallActive = false,
  29.         dynamicStylesheet,
  30.         dynamicStylesheetMedia,
  31.         autoHideShow = true,
  32.     
  33.     /* Centralized function for browser feature detection
  34.         - User agent string detection is only used when no good alternative is possible
  35.         - Is executed directly for optimal performance
  36.     */  
  37.     ua = function() {
  38.         var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF,
  39.             u = nav.userAgent.toLowerCase(),
  40.             p = nav.platform.toLowerCase(),
  41.             windows = p ? /win/.test(p) : /win/.test(u),
  42.             mac = p ? /mac/.test(p) : /mac/.test(u),
  43.             webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit/(d+(.d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
  44.             ie = !+"v1", // feature detection based on Andrea Giammarchi's solution: http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
  45.             playerVersion = [0,0,0],
  46.             d = null;
  47.         if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
  48.             d = nav.plugins[SHOCKWAVE_FLASH].description;
  49.             if (d && !(typeof nav.mimeTypes != UNDEF && nav.mimeTypes[FLASH_MIME_TYPE] && !nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin indicates whether plug-ins are enabled or disabled in Safari 3+
  50.                 plugin = true;
  51.                 ie = false; // cascaded feature detection for Internet Explorer
  52.                 d = d.replace(/^.*s+(S+s+S+$)/, "$1");
  53.                 playerVersion[0] = parseInt(d.replace(/^(.*)..*$/, "$1"), 10);
  54.                 playerVersion[1] = parseInt(d.replace(/^.*.(.*)s.*$/, "$1"), 10);
  55.                 playerVersion[2] = /[a-zA-Z]/.test(d) ? parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0;
  56.             }
  57.         }
  58.         else if (typeof win.ActiveXObject != UNDEF) {
  59.             try {
  60.                 var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
  61.                 if (a) { // a will return null when ActiveX is disabled
  62.                     d = a.GetVariable("$version");
  63.                     if (d) {
  64.                         ie = true; // cascaded feature detection for Internet Explorer
  65.                         d = d.split(" ")[1].split(",");
  66.                         playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  67.                     }
  68.                 }
  69.             }
  70.             catch(e) {}
  71.         }
  72.         return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, win:windows, mac:mac };
  73.     }(),
  74.     
  75.     /* Cross-browser onDomLoad
  76.         - Will fire an event as soon as the DOM of a web page is loaded
  77.         - Internet Explorer workaround based on Diego Perini's solution: http://javascript.nwbox.com/IEContentLoaded/
  78.         - Regular onload serves as fallback
  79.     */ 
  80.     onDomLoad = function() {
  81.         if (!ua.w3) { return; }
  82.         if ((typeof doc.readyState != UNDEF && doc.readyState == "complete") || (typeof doc.readyState == UNDEF && (doc.getElementsByTagName("body")[0] || doc.body))) { // function is fired after onload, e.g. when script is inserted dynamically 
  83.             callDomLoadFunctions();
  84.         }
  85.         if (!isDomLoaded) {
  86.             if (typeof doc.addEventListener != UNDEF) {
  87.                 doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, false);
  88.             }       
  89.             if (ua.ie && ua.win) {
  90.                 doc.attachEvent(ON_READY_STATE_CHANGE, function() {
  91.                     if (doc.readyState == "complete") {
  92.                         doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee);
  93.                         callDomLoadFunctions();
  94.                     }
  95.                 });
  96.                 if (win == top) { // if not inside an iframe
  97.                     (function(){
  98.                         if (isDomLoaded) { return; }
  99.                         try {
  100.                             doc.documentElement.doScroll("left");
  101.                         }
  102.                         catch(e) {
  103.                             setTimeout(arguments.callee, 0);
  104.                             return;
  105.                         }
  106.                         callDomLoadFunctions();
  107.                     })();
  108.                 }
  109.             }
  110.             if (ua.wk) {
  111.                 (function(){
  112.                     if (isDomLoaded) { return; }
  113.                     if (!/loaded|complete/.test(doc.readyState)) {
  114.                         setTimeout(arguments.callee, 0);
  115.                         return;
  116.                     }
  117.                     callDomLoadFunctions();
  118.                 })();
  119.             }
  120.             addLoadEvent(callDomLoadFunctions);
  121.         }
  122.     }();
  123.     
  124.     function callDomLoadFunctions() {
  125.         if (isDomLoaded) { return; }
  126.         try { // test if we can really add/remove elements to/from the DOM; we don't want to fire it too early
  127.             var t = doc.getElementsByTagName("body")[0].appendChild(createElement("span"));
  128.             t.parentNode.removeChild(t);
  129.         }
  130.         catch (e) { return; }
  131.         isDomLoaded = true;
  132.         var dl = domLoadFnArr.length;
  133.         for (var i = 0; i < dl; i++) {
  134.             domLoadFnArr[i]();
  135.         }
  136.     }
  137.     
  138.     function addDomLoadEvent(fn) {
  139.         if (isDomLoaded) {
  140.             fn();
  141.         }
  142.         else { 
  143.             domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
  144.         }
  145.     }
  146.     
  147.     /* Cross-browser onload
  148.         - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
  149.         - Will fire an event as soon as a web page including all of its assets are loaded 
  150.      */
  151.     function addLoadEvent(fn) {
  152.         if (typeof win.addEventListener != UNDEF) {
  153.             win.addEventListener("load", fn, false);
  154.         }
  155.         else if (typeof doc.addEventListener != UNDEF) {
  156.             doc.addEventListener("load", fn, false);
  157.         }
  158.         else if (typeof win.attachEvent != UNDEF) {
  159.             addListener(win, "onload", fn);
  160.         }
  161.         else if (typeof win.onload == "function") {
  162.             var fnOld = win.onload;
  163.             win.onload = function() {
  164.                 fnOld();
  165.                 fn();
  166.             };
  167.         }
  168.         else {
  169.             win.onload = fn;
  170.         }
  171.     }
  172.     
  173.     /* Main function
  174.         - Will preferably execute onDomLoad, otherwise onload (as a fallback)
  175.     */
  176.     function main() { 
  177.         if (plugin) {
  178.             testPlayerVersion();
  179.         }
  180.         else {
  181.             matchVersions();
  182.         }
  183.     }
  184.     
  185.     /* Detect the Flash Player version for non-Internet Explorer browsers
  186.         - Detecting the plug-in version via the object element is more precise than using the plugins collection item's description:
  187.           a. Both release and build numbers can be detected
  188.           b. Avoid wrong descriptions by corrupt installers provided by Adobe
  189.           c. Avoid wrong descriptions by multiple Flash Player entries in the plugin Array, caused by incorrect browser imports
  190.         - Disadvantage of this method is that it depends on the availability of the DOM, while the plugins collection is immediately available
  191.     */
  192.     function testPlayerVersion() {
  193.         var b = doc.getElementsByTagName("body")[0];
  194.         var o = createElement(OBJECT);
  195.         o.setAttribute("type", FLASH_MIME_TYPE);
  196.         var t = b.appendChild(o);
  197.         if (t) {
  198.             var counter = 0;
  199.             (function(){
  200.                 if (typeof t.GetVariable != UNDEF) {
  201.                     var d = t.GetVariable("$version");
  202.                     if (d) {
  203.                         d = d.split(" ")[1].split(",");
  204.                         ua.pv = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
  205.                     }
  206.                 }
  207.                 else if (counter < 10) {
  208.                     counter++;
  209.                     setTimeout(arguments.callee, 10);
  210.                     return;
  211.                 }
  212.                 b.removeChild(o);
  213.                 t = null;
  214.                 matchVersions();
  215.             })();
  216.         }
  217.         else {
  218.             matchVersions();
  219.         }
  220.     }
  221.     
  222.     /* Perform Flash Player and SWF version matching; static publishing only
  223.     */
  224.     function matchVersions() {
  225.         var rl = regObjArr.length;
  226.         if (rl > 0) {
  227.             for (var i = 0; i < rl; i++) { // for each registered object element
  228.                 var id = regObjArr[i].id;
  229.                 var cb = regObjArr[i].callbackFn;
  230.                 var cbObj = {success:false, id:id};
  231.                 if (ua.pv[0] > 0) {
  232.                     var obj = getElementById(id);
  233.                     if (obj) {
  234.                         if (hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // Flash Player version >= published SWF version: Houston, we have a match!
  235.                             setVisibility(id, true);
  236.                             if (cb) {
  237.                                 cbObj.success = true;
  238.                                 cbObj.ref = getObjectById(id);
  239.                                 cb(cbObj);
  240.                             }
  241.                         }
  242.                         else if (regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe Express Install dialog if set by the web page author and if supported
  243.                             var att = {};
  244.                             att.data = regObjArr[i].expressInstall;
  245.                             att.width = obj.getAttribute("width") || "0";
  246.                             att.height = obj.getAttribute("height") || "0";
  247.                             if (obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); }
  248.                             if (obj.getAttribute("align")) { att.align = obj.getAttribute("align"); }
  249.                             // parse HTML object param element's name-value pairs
  250.                             var par = {};
  251.                             var p = obj.getElementsByTagName("param");
  252.                             var pl = p.length;
  253.                             for (var j = 0; j < pl; j++) {
  254.                                 if (p[j].getAttribute("name").toLowerCase() != "movie") {
  255.                                     par[p[j].getAttribute("name")] = p[j].getAttribute("value");
  256.                                 }
  257.                             }
  258.                             showExpressInstall(att, par, id, cb);
  259.                         }
  260.                         else { // Flash Player and SWF version mismatch or an older Webkit engine that ignores the HTML object element's nested param elements: display alternative content instead of SWF
  261.                             displayAltContent(obj);
  262.                             if (cb) { cb(cbObj); }
  263.                         }
  264.                     }
  265.                 }
  266.                 else {  // if no Flash Player is installed or the fp version cannot be detected we let the HTML object element do its job (either show a SWF or alternative content)
  267.                     setVisibility(id, true);
  268.                     if (cb) {
  269.                         var o = getObjectById(id); // test whether there is an HTML object element or not
  270.                         if (o && typeof o.SetVariable != UNDEF) { 
  271.                             cbObj.success = true;
  272.                             cbObj.ref = o;
  273.                         }
  274.                         cb(cbObj);
  275.                     }
  276.                 }
  277.             }
  278.         }
  279.     }
  280.     
  281.     function getObjectById(objectIdStr) {
  282.         var r = null;
  283.         var o = getElementById(objectIdStr);
  284.         if (o && o.nodeName == "OBJECT") {
  285.             if (typeof o.SetVariable != UNDEF) {
  286.                 r = o;
  287.             }
  288.             else {
  289.                 var n = o.getElementsByTagName(OBJECT)[0];
  290.                 if (n) {
  291.                     r = n;
  292.                 }
  293.             }
  294.         }
  295.         return r;
  296.     }
  297.     
  298.     /* Requirements for Adobe Express Install
  299.         - only one instance can be active at a time
  300.         - fp 6.0.65 or higher
  301.         - Win/Mac OS only
  302.         - no Webkit engines older than version 312
  303.     */
  304.     function canExpressInstall() {
  305.         return !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac) && !(ua.wk && ua.wk < 312);
  306.     }
  307.     
  308.     /* Show the Adobe Express Install dialog
  309.         - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
  310.     */
  311.     function showExpressInstall(att, par, replaceElemIdStr, callbackFn) {
  312.         isExpressInstallActive = true;
  313.         storedCallbackFn = callbackFn || null;
  314.         storedCallbackObj = {success:false, id:replaceElemIdStr};
  315.         var obj = getElementById(replaceElemIdStr);
  316.         if (obj) {
  317.             if (obj.nodeName == "OBJECT") { // static publishing
  318.                 storedAltContent = abstractAltContent(obj);
  319.                 storedAltContentId = null;
  320.             }
  321.             else { // dynamic publishing
  322.                 storedAltContent = obj;
  323.                 storedAltContentId = replaceElemIdStr;
  324.             }
  325.             att.id = EXPRESS_INSTALL_ID;
  326.             if (typeof att.width == UNDEF || (!/%$/.test(att.width) && parseInt(att.width, 10) < 310)) { att.width = "310"; }
  327.             if (typeof att.height == UNDEF || (!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = "137"; }
  328.             doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
  329.             var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
  330.                 fv = "MMredirectURL=" + win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + "&MMdoctitle=" + doc.title;
  331.             if (typeof par.flashvars != UNDEF) {
  332.                 par.flashvars += "&" + fv;
  333.             }
  334.             else {
  335.                 par.flashvars = fv;
  336.             }
  337.             // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
  338.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  339.             if (ua.ie && ua.win && obj.readyState != 4) {
  340.                 var newObj = createElement("div");
  341.                 replaceElemIdStr += "SWFObjectNew";
  342.                 newObj.setAttribute("id", replaceElemIdStr);
  343.                 obj.parentNode.insertBefore(newObj, obj); // insert placeholder div that will be replaced by the object element that loads expressinstall.swf
  344.                 obj.style.display = "none";
  345.                 (function(){
  346.                     if (obj.readyState == 4) {
  347.                         obj.parentNode.removeChild(obj);
  348.                     }
  349.                     else {
  350.                         setTimeout(arguments.callee, 10);
  351.                     }
  352.                 })();
  353.             }
  354.             createSWF(att, par, replaceElemIdStr);
  355.         }
  356.     }
  357.     
  358.     /* Functions to abstract and display alternative content
  359.     */
  360.     function displayAltContent(obj) {
  361.         if (ua.ie && ua.win && obj.readyState != 4) {
  362.             // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it,
  363.             // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
  364.             var el = createElement("div");
  365.             obj.parentNode.insertBefore(el, obj); // insert placeholder div that will be replaced by the alternative content
  366.             el.parentNode.replaceChild(abstractAltContent(obj), el);
  367.             obj.style.display = "none";
  368.             (function(){
  369.                 if (obj.readyState == 4) {
  370.                     obj.parentNode.removeChild(obj);
  371.                 }
  372.                 else {
  373.                     setTimeout(arguments.callee, 10);
  374.                 }
  375.             })();
  376.         }
  377.         else {
  378.             obj.parentNode.replaceChild(abstractAltContent(obj), obj);
  379.         }
  380.     } 
  381.     function abstractAltContent(obj) {
  382.         var ac = createElement("div");
  383.         if (ua.win && ua.ie) {
  384.             ac.innerHTML = obj.innerHTML;
  385.         }
  386.         else {
  387.             var nestedObj = obj.getElementsByTagName(OBJECT)[0];
  388.             if (nestedObj) {
  389.                 var c = nestedObj.childNodes;
  390.                 if (c) {
  391.                     var cl = c.length;
  392.                     for (var i = 0; i < cl; i++) {
  393.                         if (!(c[i].nodeType == 1 && c[i].nodeName == "PARAM") && !(c[i].nodeType == 8)) {
  394.                             ac.appendChild(c[i].cloneNode(true));
  395.                         }
  396.                     }
  397.                 }
  398.             }
  399.         }
  400.         return ac;
  401.     }
  402.     
  403.     /* Cross-browser dynamic SWF creation
  404.     */
  405.     function createSWF(attObj, parObj, id) {
  406.         var r, el = getElementById(id);
  407.         if (ua.wk && ua.wk < 312) { return r; }
  408.         if (el) {
  409.             if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
  410.                 attObj.id = id;
  411.             }
  412.             if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML
  413.                 var att = "";
  414.                 for (var i in attObj) {
  415.                     if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries
  416.                         if (i.toLowerCase() == "data") {
  417.                             parObj.movie = attObj[i];
  418.                         }
  419.                         else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  420.                             att += ' class="' + attObj[i] + '"';
  421.                         }
  422.                         else if (i.toLowerCase() != "classid") {
  423.                             att += ' ' + i + '="' + attObj[i] + '"';
  424.                         }
  425.                     }
  426.                 }
  427.                 var par = "";
  428.                 for (var j in parObj) {
  429.                     if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries
  430.                         par += '<param name="' + j + '" value="' + parObj[j] + '" />';
  431.                     }
  432.                 }
  433.                 el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
  434.                 objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only)
  435.                 r = getElementById(attObj.id);  
  436.             }
  437.             else { // well-behaving browsers
  438.                 var o = createElement(OBJECT);
  439.                 o.setAttribute("type", FLASH_MIME_TYPE);
  440.                 for (var m in attObj) {
  441.                     if (attObj[m] != Object.prototype[m]) { // filter out prototype additions from other potential libraries
  442.                         if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
  443.                             o.setAttribute("class", attObj[m]);
  444.                         }
  445.                         else if (m.toLowerCase() != "classid") { // filter out IE specific attribute
  446.                             o.setAttribute(m, attObj[m]);
  447.                         }
  448.                     }
  449.                 }
  450.                 for (var n in parObj) {
  451.                     if (parObj[n] != Object.prototype[n] && n.toLowerCase() != "movie") { // filter out prototype additions from other potential libraries and IE specific param element
  452.                         createObjParam(o, n, parObj[n]);
  453.                     }
  454.                 }
  455.                 el.parentNode.replaceChild(o, el);
  456.                 r = o;
  457.             }
  458.         }
  459.         return r;
  460.     }
  461.     
  462.     function createObjParam(el, pName, pValue) {
  463.         var p = createElement("param");
  464.         p.setAttribute("name", pName);  
  465.         p.setAttribute("value", pValue);
  466.         el.appendChild(p);
  467.     }
  468.     
  469.     /* Cross-browser SWF removal
  470.         - Especially needed to safely and completely remove a SWF in Internet Explorer
  471.     */
  472.     function removeSWF(id) {
  473.         var obj = getElementById(id);
  474.         if (obj && obj.nodeName == "OBJECT") {
  475.             if (ua.ie && ua.win) {
  476.                 obj.style.display = "none";
  477.                 (function(){
  478.                     if (obj.readyState == 4) {
  479.                         removeObjectInIE(id);
  480.                     }
  481.                     else {
  482.                         setTimeout(arguments.callee, 10);
  483.                     }
  484.                 })();
  485.             }
  486.             else {
  487.                 obj.parentNode.removeChild(obj);
  488.             }
  489.         }
  490.     }
  491.     
  492.     function removeObjectInIE(id) {
  493.         var obj = getElementById(id);
  494.         if (obj) {
  495.             for (var i in obj) {
  496.                 if (typeof obj[i] == "function") {
  497.                     obj[i] = null;
  498.                 }
  499.             }
  500.             obj.parentNode.removeChild(obj);
  501.         }
  502.     }
  503.     
  504.     /* Functions to optimize JavaScript compression
  505.     */
  506.     function getElementById(id) {
  507.         var el = null;
  508.         try {
  509.             el = doc.getElementById(id);
  510.         }
  511.         catch (e) {}
  512.         return el;
  513.     }
  514.     
  515.     function createElement(el) {
  516.         return doc.createElement(el);
  517.     }
  518.     
  519.     /* Updated attachEvent function for Internet Explorer
  520.         - Stores attachEvent information in an Array, so on unload the detachEvent functions can be called to avoid memory leaks
  521.     */  
  522.     function addListener(target, eventType, fn) {
  523.         target.attachEvent(eventType, fn);
  524.         listenersArr[listenersArr.length] = [target, eventType, fn];
  525.     }
  526.     
  527.     /* Flash Player and SWF content version matching
  528.     */
  529.     function hasPlayerVersion(rv) {
  530.         var pv = ua.pv, v = rv.split(".");
  531.         v[0] = parseInt(v[0], 10);
  532.         v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0"
  533.         v[2] = parseInt(v[2], 10) || 0;
  534.         return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
  535.     }
  536.     
  537.     /* Cross-browser dynamic CSS creation
  538.         - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
  539.     */  
  540.     function createCSS(sel, decl, media, newStyle) {
  541.         if (ua.ie && ua.mac) { return; }
  542.         var h = doc.getElementsByTagName("head")[0];
  543.         if (!h) { return; } // to also support badly authored HTML pages that lack a head element
  544.         var m = (media && typeof media == "string") ? media : "screen";
  545.         if (newStyle) {
  546.             dynamicStylesheet = null;
  547.             dynamicStylesheetMedia = null;
  548.         }
  549.         if (!dynamicStylesheet || dynamicStylesheetMedia != m) { 
  550.             // create dynamic stylesheet + get a global reference to it
  551.             var s = createElement("style");
  552.             s.setAttribute("type", "text/css");
  553.             s.setAttribute("media", m);
  554.             dynamicStylesheet = h.appendChild(s);
  555.             if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
  556.                 dynamicStylesheet = doc.styleSheets[doc.styleSheets.length - 1];
  557.             }
  558.             dynamicStylesheetMedia = m;
  559.         }
  560.         // add style rule
  561.         if (ua.ie && ua.win) {
  562.             if (dynamicStylesheet && typeof dynamicStylesheet.addRule == OBJECT) {
  563.                 dynamicStylesheet.addRule(sel, decl);
  564.             }
  565.         }
  566.         else {
  567.             if (dynamicStylesheet && typeof doc.createTextNode != UNDEF) {
  568.                 dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
  569.             }
  570.         }
  571.     }
  572.     
  573.     function setVisibility(id, isVisible) {
  574.         if (!autoHideShow) { return; }
  575.         var v = isVisible ? "visible" : "hidden";
  576.         if (isDomLoaded && getElementById(id)) {
  577.             getElementById(id).style.visibility = v;
  578.         }
  579.         else {
  580.             createCSS("#" + id, "visibility:" + v);
  581.         }
  582.     }
  583.     /* Filter to avoid XSS attacks
  584.     */
  585.     function urlEncodeIfNecessary(s) {
  586.         var regex = /[\"<>.;]/;
  587.         var hasBadChars = regex.exec(s) != null;
  588.         return hasBadChars && typeof encodeURIComponent != UNDEF ? encodeURIComponent(s) : s;
  589.     }
  590.     
  591.     /* Release memory to avoid memory leaks caused by closures, fix hanging audio/video threads and force open sockets/NetConnections to disconnect (Internet Explorer only)
  592.     */
  593.     var cleanup = function() {
  594.         if (ua.ie && ua.win) {
  595.             window.attachEvent("onunload", function() {
  596.                 // remove listeners to avoid memory leaks
  597.                 var ll = listenersArr.length;
  598.                 for (var i = 0; i < ll; i++) {
  599.                     listenersArr[i][0].detachEvent(listenersArr[i][1], listenersArr[i][2]);
  600.                 }
  601.                 // cleanup dynamically embedded objects to fix audio/video threads and force open sockets and NetConnections to disconnect
  602.                 var il = objIdArr.length;
  603.                 for (var j = 0; j < il; j++) {
  604.                     removeSWF(objIdArr[j]);
  605.                 }
  606.                 // cleanup library's main closures to avoid memory leaks
  607.                 for (var k in ua) {
  608.                     ua[k] = null;
  609.                 }
  610.                 ua = null;
  611.                 for (var l in swfobject) {
  612.                     swfobject[l] = null;
  613.                 }
  614.                 swfobject = null;
  615.             });
  616.         }
  617.     }();
  618.     
  619.     return {
  620.         /* Public API
  621.             - Reference: http://code.google.com/p/swfobject/wiki/documentation
  622.         */ 
  623.         registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr, callbackFn) {
  624.             if (ua.w3 && objectIdStr && swfVersionStr) {
  625.                 var regObj = {};
  626.                 regObj.id = objectIdStr;
  627.                 regObj.swfVersion = swfVersionStr;
  628.                 regObj.expressInstall = xiSwfUrlStr;
  629.                 regObj.callbackFn = callbackFn;
  630.                 regObjArr[regObjArr.length] = regObj;
  631.                 setVisibility(objectIdStr, false);
  632.             }
  633.             else if (callbackFn) {
  634.                 callbackFn({success:false, id:objectIdStr});
  635.             }
  636.         },
  637.         
  638.         getObjectById: function(objectIdStr) {
  639.             if (ua.w3) {
  640.                 return getObjectById(objectIdStr);
  641.             }
  642.         },
  643.         
  644.         embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) {
  645.             var callbackObj = {success:false, id:replaceElemIdStr};
  646.             if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && replaceElemIdStr && widthStr && heightStr && swfVersionStr) {
  647.                 setVisibility(replaceElemIdStr, false);
  648.                 addDomLoadEvent(function() {
  649.                     widthStr += ""; // auto-convert to string
  650.                     heightStr += "";
  651.                     var att = {};
  652.                     if (attObj && typeof attObj === OBJECT) {
  653.                         for (var i in attObj) { // copy object to avoid the use of references, because web authors often reuse attObj for multiple SWFs
  654.                             att[i] = attObj[i];
  655.                         }
  656.                     }
  657.                     att.data = swfUrlStr;
  658.                     att.width = widthStr;
  659.                     att.height = heightStr;
  660.                     var par = {}; 
  661.                     if (parObj && typeof parObj === OBJECT) {
  662.                         for (var j in parObj) { // copy object to avoid the use of references, because web authors often reuse parObj for multiple SWFs
  663.                             par[j] = parObj[j];
  664.                         }
  665.                     }
  666.                     if (flashvarsObj && typeof flashvarsObj === OBJECT) {
  667.                         for (var k in flashvarsObj) { // copy object to avoid the use of references, because web authors often reuse flashvarsObj for multiple SWFs
  668.                             if (typeof par.flashvars != UNDEF) {
  669.                                 par.flashvars += "&" + k + "=" + flashvarsObj[k];
  670.                             }
  671.                             else {
  672.                                 par.flashvars = k + "=" + flashvarsObj[k];
  673.                             }
  674.                         }
  675.                     }
  676.                     if (hasPlayerVersion(swfVersionStr)) { // create SWF
  677.                         var obj = createSWF(att, par, replaceElemIdStr);
  678.                         if (att.id == replaceElemIdStr) {
  679.                             setVisibility(replaceElemIdStr, true);
  680.                         }
  681.                         callbackObj.success = true;
  682.                         callbackObj.ref = obj;
  683.                     }
  684.                     else if (xiSwfUrlStr && canExpressInstall()) { // show Adobe Express Install
  685.                         att.data = xiSwfUrlStr;
  686.                         showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  687.                         return;
  688.                     }
  689.                     else { // show alternative content
  690.                         setVisibility(replaceElemIdStr, true);
  691.                     }
  692.                     if (callbackFn) { callbackFn(callbackObj); }
  693.                 });
  694.             }
  695.             else if (callbackFn) { callbackFn(callbackObj); }
  696.         },
  697.         
  698.         switchOffAutoHideShow: function() {
  699.             autoHideShow = false;
  700.         },
  701.         
  702.         ua: ua,
  703.         
  704.         getFlashPlayerVersion: function() {
  705.             return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
  706.         },
  707.         
  708.         hasFlashPlayerVersion: hasPlayerVersion,
  709.         
  710.         createSWF: function(attObj, parObj, replaceElemIdStr) {
  711.             if (ua.w3) {
  712.                 return createSWF(attObj, parObj, replaceElemIdStr);
  713.             }
  714.             else {
  715.                 return undefined;
  716.             }
  717.         },
  718.         
  719.         showExpressInstall: function(att, par, replaceElemIdStr, callbackFn) {
  720.             if (ua.w3 && canExpressInstall()) {
  721.                 showExpressInstall(att, par, replaceElemIdStr, callbackFn);
  722.             }
  723.         },
  724.         
  725.         removeSWF: function(objElemIdStr) {
  726.             if (ua.w3) {
  727.                 removeSWF(objElemIdStr);
  728.             }
  729.         },
  730.         
  731.         createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) {
  732.             if (ua.w3) {
  733.                 createCSS(selStr, declStr, mediaStr, newStyleBoolean);
  734.             }
  735.         },
  736.         
  737.         addDomLoadEvent: addDomLoadEvent,
  738.         
  739.         addLoadEvent: addLoadEvent,
  740.         
  741.         getQueryParamValue: function(param) {
  742.             var q = doc.location.search || doc.location.hash;
  743.             if (q) {
  744.                 if (/?/.test(q)) { q = q.split("?")[1]; } // strip question mark
  745.                 if (param == null) {
  746.                     return urlEncodeIfNecessary(q);
  747.                 }
  748.                 var pairs = q.split("&");
  749.                 for (var i = 0; i < pairs.length; i++) {
  750.                     if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
  751.                         return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1)));
  752.                     }
  753.                 }
  754.             }
  755.             return "";
  756.         },
  757.         
  758.         // For internal usage only
  759.         expressInstallCallback: function() {
  760.             if (isExpressInstallActive) {
  761.                 var obj = getElementById(EXPRESS_INSTALL_ID);
  762.                 if (obj && storedAltContent) {
  763.                     obj.parentNode.replaceChild(storedAltContent, obj);
  764.                     if (storedAltContentId) {
  765.                         setVisibility(storedAltContentId, true);
  766.                         if (ua.ie && ua.win) { storedAltContent.style.display = "block"; }
  767.                     }
  768.                     if (storedCallbackFn) { storedCallbackFn(storedCallbackObj); }
  769.                 }
  770.                 isExpressInstallActive = false;
  771.             } 
  772.         }
  773.     };
  774. }();
  775. /**  * @class Ext.FlashComponent  * @extends Ext.BoxComponent  * @constructor  * @xtype flash  */ Ext.FlashComponent = Ext.extend(Ext.BoxComponent, {     /**      * @cfg {String} flashVersion      * Indicates the version the flash content was published for. Defaults to <tt>'9.0.45'</tt>.      */     flashVersion : '9.0.45',     /**      * @cfg {String} backgroundColor      * The background color of the chart. Defaults to <tt>'#ffffff'</tt>.      */     backgroundColor: '#ffffff',     /**      * @cfg {String} wmode      * The wmode of the flash object. This can be used to control layering. Defaults to <tt>'opaque'</tt>.      */     wmode: 'opaque',     /**      * @cfg {String} url      * The URL of the chart to include. Defaults to <tt>undefined</tt>.      */     url: undefined,     swfId : undefined,     swfWidth: '100%',     swfHeight: '100%',     /**      * @cfg {Boolean} expressInstall      * True to prompt the user to install flash if not installed. Note that this uses      * Ext.FlashComponent.EXPRESS_INSTALL_URL, which should be set to the local resource. Defaults to <tt>false</tt>.      */     expressInstall: false,     initComponent : function(){         Ext.FlashComponent.superclass.initComponent.call(this);         this.addEvents('initialize');     },     onRender : function(){         Ext.FlashComponent.superclass.onRender.apply(this, arguments);         var params = {             allowScriptAccess: 'always',             bgcolor: this.backgroundColor,             wmode: this.wmode         }, vars = {             allowedDomain: document.location.hostname,             elementID: this.getId(),             eventHandler: 'Ext.FlashEventProxy.onEvent'         };         new swfobject.embedSWF(this.url, this.id, this.swfWidth, this.swfHeight, this.flashVersion,             this.expressInstall ? Ext.FlashComponent.EXPRESS_INSTALL_URL : undefined, vars, params);         this.swf = Ext.getDom(this.id);         this.el = Ext.get(this.swf);     },     getSwfId : function(){         return this.swfId || (this.swfId = "extswf" + (++Ext.Component.AUTO_ID));     },     getId : function(){         return this.id || (this.id = "extflashcmp" + (++Ext.Component.AUTO_ID));     },     onFlashEvent : function(e){         switch(e.type){             case "swfReady":                 this.initSwf();                 return;             case "log":                 return;         }         e.component = this;         this.fireEvent(e.type.toLowerCase().replace(/event$/, ''), e);     },     initSwf : function(){         this.onSwfReady(!!this.isInitialized);         this.isInitialized = true;         this.fireEvent('initialize', this);     },     beforeDestroy: function(){         if(this.rendered){             swfobject.removeSWF(this.swf.id);         }         Ext.FlashComponent.superclass.beforeDestroy.call(this);     },     onSwfReady : Ext.emptyFn }); /**  * Sets the url for installing flash if it doesn't exist. This should be set to a local resource.  * @static  * @type String  */ Ext.FlashComponent.EXPRESS_INSTALL_URL = 'http:/' + '/swfobject.googlecode.com/svn/trunk/swfobject/expressInstall.swf'; Ext.reg('flash', Ext.FlashComponent);/**
  776.  * @class Ext.FlashProxy
  777.  * @singleton
  778.  */
  779. Ext.FlashEventProxy = {
  780.     onEvent : function(id, e){
  781.         var fp = Ext.getCmp(id);
  782.         if(fp){
  783.             fp.onFlashEvent(e);
  784.         }else{
  785.             arguments.callee.defer(10, this, [id, e]);
  786.         }
  787.     }
  788. }/**
  789.  * @class Ext.chart.Chart
  790.  * @extends Ext.FlashComponent
  791.  * The Ext.chart package provides the capability to visualize data with flash based charting.
  792.  * Each chart binds directly to an Ext.data.Store enabling automatic updates of the chart.
  793.  * @constructor
  794.  * @xtype chart
  795.  */
  796.  
  797.  Ext.chart.Chart = Ext.extend(Ext.FlashComponent, {
  798.     refreshBuffer: 100,
  799.     /**
  800.      * @cfg {Object} chartStyle
  801.      * Sets styles for this chart. Contains a number of default values. Modifying this property will override
  802.      * the base styles on the chart.
  803.      */
  804.     chartStyle: {
  805.         padding: 10,
  806.         animationEnabled: true,
  807.         font: {
  808.             name: 'Tahoma',
  809.             color: 0x444444,
  810.             size: 11
  811.         },
  812.         dataTip: {
  813.             padding: 5,
  814.             border: {
  815.                 color: 0x99bbe8,
  816.                 size:1
  817.             },
  818.             background: {
  819.                 color: 0xDAE7F6,
  820.                 alpha: .9
  821.             },
  822.             font: {
  823.                 name: 'Tahoma',
  824.                 color: 0x15428B,
  825.                 size: 10,
  826.                 bold: true
  827.             }
  828.         }
  829.     },
  830.     
  831.     /**
  832.      * @cfg {String} url
  833.      * The url to load the chart from. This defaults to Ext.chart.Chart.CHART_URL, which should
  834.      * be modified to point to the local charts resource.
  835.      */
  836.     
  837.     /**
  838.      * @cfg {Object} extraStyle
  839.      * Contains extra styles that will be added or overwritten to the default chartStyle. Defaults to <tt>null</tt>.
  840.      */
  841.     extraStyle: null,
  842.     
  843.     /**
  844.      * @cfg {Boolean} disableCaching
  845.      * True to add a "cache buster" to the end of the chart url. Defaults to true for Opera and IE.
  846.      */
  847.     disableCaching: Ext.isIE || Ext.isOpera,
  848.     disableCacheParam: '_dc',
  849.     initComponent : function(){
  850.         Ext.chart.Chart.superclass.initComponent.call(this);
  851.         if(!this.url){
  852.             this.url = Ext.chart.Chart.CHART_URL;
  853.         }
  854.         if(this.disableCaching){
  855.             this.url = Ext.urlAppend(this.url, String.format('{0}={1}', this.disableCacheParam, new Date().getTime()));
  856.         }
  857.         this.addEvents(
  858.             'itemmouseover',
  859.             'itemmouseout',
  860.             'itemclick',
  861.             'itemdoubleclick',
  862.             'itemdragstart',
  863.             'itemdrag',
  864.             'itemdragend'
  865.         );
  866.         this.store = Ext.StoreMgr.lookup(this.store);
  867.     },
  868.     /**
  869.      * Sets a single style value on the Chart instance.
  870.      *
  871.      * @param name {String} Name of the Chart style value to change.
  872.      * @param value {Object} New value to pass to the Chart style.
  873.      */
  874.      setStyle: function(name, value){
  875.          this.swf.setStyle(name, Ext.encode(value));
  876.      },
  877.     /**
  878.      * Resets all styles on the Chart instance.
  879.      *
  880.      * @param styles {Object} Initializer for all Chart styles.
  881.      */
  882.     setStyles: function(styles){
  883.         this.swf.setStyles(Ext.encode(styles));
  884.     },
  885.     /**
  886.      * Sets the styles on all series in the Chart.
  887.      *
  888.      * @param styles {Array} Initializer for all Chart series styles.
  889.      */
  890.     setSeriesStyles: function(styles){
  891.         var s = [];
  892.         Ext.each(styles, function(style){
  893.             s.push(Ext.encode(style));
  894.         });
  895.         this.swf.setSeriesStyles(s);
  896.     },
  897.     setCategoryNames : function(names){
  898.         this.swf.setCategoryNames(names);
  899.     },
  900.     setTipRenderer : function(fn){
  901.         var chart = this;
  902.         this.tipFnName = this.createFnProxy(function(item, index, series){
  903.             var record = chart.store.getAt(index);
  904.             return fn(chart, record, index, series);
  905.         }, this.tipFnName);
  906.         this.swf.setDataTipFunction(this.tipFnName);
  907.     },
  908.     setSeries : function(series){
  909.         this.series = series;
  910.         this.refresh();
  911.     },
  912.     /**
  913.      * Changes the data store bound to this chart and refreshes it.
  914.      * @param {Store} store The store to bind to this chart
  915.      */
  916.     bindStore : function(store, initial){
  917.         if(!initial && this.store){
  918.             this.store.un("datachanged", this.refresh, this);
  919.             this.store.un("add", this.delayRefresh, this);
  920.             this.store.un("remove", this.delayRefresh, this);
  921.             this.store.un("update", this.delayRefresh, this);
  922.             this.store.un("clear", this.refresh, this);
  923.             if(store !== this.store && this.store.autoDestroy){
  924.                 this.store.destroy();
  925.             }
  926.         }
  927.         if(store){
  928.             store = Ext.StoreMgr.lookup(store);
  929.             store.on({
  930.                 scope: this,
  931.                 datachanged: this.refresh,
  932.                 add: this.delayRefresh,
  933.                 remove: this.delayRefresh,
  934.                 update: this.delayRefresh,
  935.                 clear: this.refresh
  936.             });
  937.         }
  938.         this.store = store;
  939.         if(store && !initial){
  940.             this.refresh();
  941.         }
  942.     },
  943.     onSwfReady : function(isReset){
  944.         Ext.chart.Chart.superclass.onSwfReady.call(this, isReset);
  945.         this.swf.setType(this.type);
  946.         if(this.chartStyle){
  947.             this.setStyles(Ext.apply(this.extraStyle || {}, this.chartStyle));
  948.         }
  949.         if(this.categoryNames){
  950.             this.setCategoryNames(this.categoryNames);
  951.         }
  952.         if(this.tipRenderer){
  953.             this.setTipRenderer(this.tipRenderer);
  954.         }
  955.         if(!isReset){
  956.             this.bindStore(this.store, true);
  957.         }
  958.         this.refresh.defer(10, this);
  959.     },
  960.     delayRefresh : function(){
  961.         if(!this.refreshTask){
  962.             this.refreshTask = new Ext.util.DelayedTask(this.refresh, this);
  963.         }
  964.         this.refreshTask.delay(this.refreshBuffer);
  965.     },
  966.     refresh : function(){
  967.         var styleChanged = false;
  968.         // convert the store data into something YUI charts can understand
  969.         var data = [], rs = this.store.data.items;
  970.         for(var j = 0, len = rs.length; j < len; j++){
  971.             data[j] = rs[j].data;
  972.         }
  973.         //make a copy of the series definitions so that we aren't
  974.         //editing them directly.
  975.         var dataProvider = [];
  976.         var seriesCount = 0;
  977.         var currentSeries = null;
  978.         var i = 0;
  979.         if(this.series){
  980.             seriesCount = this.series.length;
  981.             for(i = 0; i < seriesCount; i++){
  982.                 currentSeries = this.series[i];
  983.                 var clonedSeries = {};
  984.                 for(var prop in currentSeries){
  985.                     if(prop == "style" && currentSeries.style !== null){
  986.                         clonedSeries.style = Ext.encode(currentSeries.style);
  987.                         styleChanged = true;
  988.                         //we don't want to modify the styles again next time
  989.                         //so null out the style property.
  990.                         // this causes issues
  991.                         // currentSeries.style = null;
  992.                     } else{
  993.                         clonedSeries[prop] = currentSeries[prop];
  994.                     }
  995.                 }
  996.                 dataProvider.push(clonedSeries);
  997.             }
  998.         }
  999.         if(seriesCount > 0){
  1000.             for(i = 0; i < seriesCount; i++){
  1001.                 currentSeries = dataProvider[i];
  1002.                 if(!currentSeries.type){
  1003.                     currentSeries.type = this.type;
  1004.                 }
  1005.                 currentSeries.dataProvider = data;
  1006.             }
  1007.         } else{
  1008.             dataProvider.push({type: this.type, dataProvider: data});
  1009.         }
  1010.         this.swf.setDataProvider(dataProvider);
  1011.     },
  1012.     createFnProxy : function(fn, old){
  1013.         if(old){
  1014.             delete window[old];
  1015.         }
  1016.         var fnName = "extFnProxy" + (++Ext.chart.Chart.PROXY_FN_ID);
  1017.         window[fnName] = fn;
  1018.         return fnName;
  1019.     },
  1020.     
  1021.     onDestroy: function(){
  1022.         Ext.chart.Chart.superclass.onDestroy.call(this);
  1023.         delete window[this.tipFnName];
  1024.     }
  1025. });
  1026. Ext.reg('chart', Ext.chart.Chart);
  1027. Ext.chart.Chart.PROXY_FN_ID = 0;
  1028. /**
  1029.  * Sets the url to load the chart from. This should be set to a local resource.
  1030.  * @static
  1031.  * @type String
  1032.  */
  1033. Ext.chart.Chart.CHART_URL = 'http:/' + '/yui.yahooapis.com/2.7.0/build/charts/assets/charts.swf';
  1034. /**
  1035.  * @class Ext.chart.PieChart
  1036.  * @extends Ext.chart.Chart
  1037.  * @constructor
  1038.  * @xtype piechart
  1039.  */
  1040. Ext.chart.PieChart = Ext.extend(Ext.chart.Chart, {
  1041.     type: 'pie',
  1042.     onSwfReady : function(isReset){
  1043.         Ext.chart.PieChart.superclass.onSwfReady.call(this, isReset);
  1044.         this.setDataField(this.dataField);
  1045.         this.setCategoryField(this.categoryField);
  1046.     },
  1047.     setDataField : function(field){
  1048.         this.dataField = field;
  1049.         this.swf.setDataField(field);
  1050.     },
  1051.     setCategoryField : function(field){
  1052.         this.categoryField = field;
  1053.         this.swf.setCategoryField(field);
  1054.     }
  1055. });
  1056. Ext.reg('piechart', Ext.chart.PieChart);
  1057. /**
  1058.  * @class Ext.chart.CartesianChart
  1059.  * @extends Ext.chart.Chart
  1060.  * @constructor
  1061.  * @xtype cartesianchart
  1062.  */
  1063. Ext.chart.CartesianChart = Ext.extend(Ext.chart.Chart, {
  1064.     onSwfReady : function(isReset){
  1065.         Ext.chart.CartesianChart.superclass.onSwfReady.call(this, isReset);
  1066.         if(this.xField){
  1067.             this.setXField(this.xField);
  1068.         }
  1069.         if(this.yField){
  1070.             this.setYField(this.yField);
  1071.         }
  1072.         if(this.xAxis){
  1073.             this.setXAxis(this.xAxis);
  1074.         }
  1075.         if(this.yAxis){
  1076.             this.setYAxis(this.yAxis);
  1077.         }
  1078.     },
  1079.     setXField : function(value){
  1080.         this.xField = value;
  1081.         this.swf.setHorizontalField(value);
  1082.     },
  1083.     setYField : function(value){
  1084.         this.yField = value;
  1085.         this.swf.setVerticalField(value);
  1086.     },
  1087.     setXAxis : function(value){
  1088.         this.xAxis = this.createAxis('xAxis', value);
  1089.         this.swf.setHorizontalAxis(this.xAxis);
  1090.     },
  1091.     setYAxis : function(value){
  1092.         this.yAxis = this.createAxis('yAxis', value);
  1093.         this.swf.setVerticalAxis(this.yAxis);
  1094.     },
  1095.     createAxis : function(axis, value){
  1096.         var o = Ext.apply({}, value), oldFn = null;
  1097.         if(this[axis]){
  1098.             oldFn = this[axis].labelFunction;
  1099.         }
  1100.         if(o.labelRenderer){
  1101.             var fn = o.labelRenderer;
  1102.             o.labelFunction = this.createFnProxy(function(v){
  1103.                 return fn(v);
  1104.             }, oldFn);
  1105.             delete o.labelRenderer;
  1106.         }
  1107.         return o;
  1108.     }
  1109. });
  1110. Ext.reg('cartesianchart', Ext.chart.CartesianChart);
  1111. /**
  1112.  * @class Ext.chart.LineChart
  1113.  * @extends Ext.chart.CartesianChart
  1114.  * @constructor
  1115.  * @xtype linechart
  1116.  */
  1117. Ext.chart.LineChart = Ext.extend(Ext.chart.CartesianChart, {
  1118.     type: 'line'
  1119. });
  1120. Ext.reg('linechart', Ext.chart.LineChart);
  1121. /**
  1122.  * @class Ext.chart.ColumnChart
  1123.  * @extends Ext.chart.CartesianChart
  1124.  * @constructor
  1125.  * @xtype columnchart
  1126.  */
  1127. Ext.chart.ColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1128.     type: 'column'
  1129. });
  1130. Ext.reg('columnchart', Ext.chart.ColumnChart);
  1131. /**
  1132.  * @class Ext.chart.StackedColumnChart
  1133.  * @extends Ext.chart.CartesianChart
  1134.  * @constructor
  1135.  * @xtype stackedcolumnchart
  1136.  */
  1137. Ext.chart.StackedColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1138.     type: 'stackcolumn'
  1139. });
  1140. Ext.reg('stackedcolumnchart', Ext.chart.StackedColumnChart);
  1141. /**
  1142.  * @class Ext.chart.BarChart
  1143.  * @extends Ext.chart.CartesianChart
  1144.  * @constructor
  1145.  * @xtype barchart
  1146.  */
  1147. Ext.chart.BarChart = Ext.extend(Ext.chart.CartesianChart, {
  1148.     type: 'bar'
  1149. });
  1150. Ext.reg('barchart', Ext.chart.BarChart);
  1151. /**
  1152.  * @class Ext.chart.StackedBarChart
  1153.  * @extends Ext.chart.CartesianChart
  1154.  * @constructor
  1155.  * @xtype stackedbarchart
  1156.  */
  1157. Ext.chart.StackedBarChart = Ext.extend(Ext.chart.CartesianChart, {
  1158.     type: 'stackbar'
  1159. });
  1160. Ext.reg('stackedbarchart', Ext.chart.StackedBarChart);
  1161. /**
  1162.  * @class Ext.chart.Axis
  1163.  * Defines a CartesianChart's vertical or horizontal axis.
  1164.  * @constructor
  1165.  */
  1166. Ext.chart.Axis = function(config){
  1167.     Ext.apply(this, config);
  1168. };
  1169. Ext.chart.Axis.prototype =
  1170. {
  1171.     /**
  1172.      * The type of axis.
  1173.      *
  1174.      * @property type
  1175.      * @type String
  1176.      */
  1177.     type: null,
  1178.     /**
  1179.      * The direction in which the axis is drawn. May be "horizontal" or "vertical".
  1180.      *
  1181.      * @property orientation
  1182.      * @type String
  1183.      */
  1184.     orientation: "horizontal",
  1185.     /**
  1186.      * If true, the items on the axis will be drawn in opposite direction.
  1187.      *
  1188.      * @property reverse
  1189.      * @type Boolean
  1190.      */
  1191.     reverse: false,
  1192.     /**
  1193.      * A string reference to the globally-accessible function that may be called to
  1194.      * determine each of the label values for this axis.
  1195.      *
  1196.      * @property labelFunction
  1197.      * @type String
  1198.      */
  1199.     labelFunction: null,
  1200.     /**
  1201.      * If true, labels that overlap previously drawn labels on the axis will be hidden.
  1202.      *
  1203.      * @property hideOverlappingLabels
  1204.      * @type Boolean
  1205.      */
  1206.     hideOverlappingLabels: true
  1207. };
  1208. /**
  1209.  * @class Ext.chart.NumericAxis
  1210.  * @extends Ext.chart.Axis
  1211.  * A type of axis whose units are measured in numeric values.
  1212.  * @constructor
  1213.  */
  1214. Ext.chart.NumericAxis = Ext.extend(Ext.chart.Axis, {
  1215.     type: "numeric",
  1216.     /**
  1217.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1218.      * will be calculated automatically.
  1219.      *
  1220.      * @property minimum
  1221.      * @type Number
  1222.      */
  1223.     minimum: NaN,
  1224.     /**
  1225.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1226.      * will be calculated automatically.
  1227.      *
  1228.      * @property maximum
  1229.      * @type Number
  1230.      */
  1231.     maximum: NaN,
  1232.     /**
  1233.      * The spacing between major intervals on this axis.
  1234.      *
  1235.      * @property majorUnit
  1236.      * @type Number
  1237.      */
  1238.     majorUnit: NaN,
  1239.     /**
  1240.      * The spacing between minor intervals on this axis.
  1241.      *
  1242.      * @property minorUnit
  1243.      * @type Number
  1244.      */
  1245.     minorUnit: NaN,
  1246.     /**
  1247.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1248.      * the nearest major or minor unit. If false, their position will be based
  1249.      * on the minimum value.
  1250.      *
  1251.      * @property snapToUnits
  1252.      * @type Boolean
  1253.      */
  1254.     snapToUnits: true,
  1255.     /**
  1256.      * If true, and the bounds are calculated automatically, either the minimum or
  1257.      * maximum will be set to zero.
  1258.      *
  1259.      * @property alwaysShowZero
  1260.      * @type Boolean
  1261.      */
  1262.     alwaysShowZero: true,
  1263.     /**
  1264.      * The scaling algorithm to use on this axis. May be "linear" or "logarithmic".
  1265.      *
  1266.      * @property scale
  1267.      * @type String
  1268.      */
  1269.     scale: "linear"
  1270. });
  1271. /**
  1272.  * @class Ext.chart.TimeAxis
  1273.  * @extends Ext.chart.Axis
  1274.  * A type of axis whose units are measured in time-based values.
  1275.  * @constructor
  1276.  */
  1277. Ext.chart.TimeAxis = Ext.extend(Ext.chart.Axis, {
  1278.     type: "time",
  1279.     /**
  1280.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1281.      * will be calculated automatically.
  1282.      *
  1283.      * @property minimum
  1284.      * @type Date
  1285.      */
  1286.     minimum: null,
  1287.     /**
  1288.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1289.      * will be calculated automatically.
  1290.      *
  1291.      * @property maximum
  1292.      * @type Number
  1293.      */
  1294.     maximum: null,
  1295.     /**
  1296.      * The spacing between major intervals on this axis.
  1297.      *
  1298.      * @property majorUnit
  1299.      * @type Number
  1300.      */
  1301.     majorUnit: NaN,
  1302.     /**
  1303.      * The time unit used by the majorUnit.
  1304.      *
  1305.      * @property majorTimeUnit
  1306.      * @type String
  1307.      */
  1308.     majorTimeUnit: null,
  1309.     /**
  1310.      * The spacing between minor intervals on this axis.
  1311.      *
  1312.      * @property majorUnit
  1313.      * @type Number
  1314.      */
  1315.     minorUnit: NaN,
  1316.     /**
  1317.      * The time unit used by the minorUnit.
  1318.      *
  1319.      * @property majorTimeUnit
  1320.      * @type String
  1321.      */
  1322.     minorTimeUnit: null,
  1323.     /**
  1324.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1325.      * the nearest major or minor unit. If false, their position will be based
  1326.      * on the minimum value.
  1327.      *
  1328.      * @property snapToUnits
  1329.      * @type Boolean
  1330.      */
  1331.     snapToUnits: true
  1332. });
  1333. /**
  1334.  * @class Ext.chart.CategoryAxis
  1335.  * @extends Ext.chart.Axis
  1336.  * A type of axis that displays items in categories.
  1337.  * @constructor
  1338.  */
  1339. Ext.chart.CategoryAxis = Ext.extend(Ext.chart.Axis, {
  1340.     type: "category",
  1341.     /**
  1342.      * A list of category names to display along this axis.
  1343.      *
  1344.      * @property categoryNames
  1345.      * @type Array
  1346.      */
  1347.     categoryNames: null
  1348. });
  1349. /**
  1350.  * @class Ext.chart.Series
  1351.  * Series class for the charts widget.
  1352.  * @constructor
  1353.  */
  1354. Ext.chart.Series = function(config) { Ext.apply(this, config); };
  1355. Ext.chart.Series.prototype =
  1356. {
  1357.     /**
  1358.      * The type of series.
  1359.      *
  1360.      * @property type
  1361.      * @type String
  1362.      */
  1363.     type: null,
  1364.     /**
  1365.      * The human-readable name of the series.
  1366.      *
  1367.      * @property displayName
  1368.      * @type String
  1369.      */
  1370.     displayName: null
  1371. };
  1372. /**
  1373.  * @class Ext.chart.CartesianSeries
  1374.  * @extends Ext.chart.Series
  1375.  * CartesianSeries class for the charts widget.
  1376.  * @constructor
  1377.  */
  1378. Ext.chart.CartesianSeries = Ext.extend(Ext.chart.Series, {
  1379.     /**
  1380.      * The field used to access the x-axis value from the items from the data source.
  1381.      *
  1382.      * @property xField
  1383.      * @type String
  1384.      */
  1385.     xField: null,
  1386.     /**
  1387.      * The field used to access the y-axis value from the items from the data source.
  1388.      *
  1389.      * @property yField
  1390.      * @type String
  1391.      */
  1392.     yField: null
  1393. });
  1394. /**
  1395.  * @class Ext.chart.ColumnSeries
  1396.  * @extends Ext.chart.CartesianSeries
  1397.  * ColumnSeries class for the charts widget.
  1398.  * @constructor
  1399.  */
  1400. Ext.chart.ColumnSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1401.     type: "column"
  1402. });
  1403. /**
  1404.  * @class Ext.chart.LineSeries
  1405.  * @extends Ext.chart.CartesianSeries
  1406.  * LineSeries class for the charts widget.
  1407.  * @constructor
  1408.  */
  1409. Ext.chart.LineSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1410.     type: "line"
  1411. });
  1412. /**
  1413.  * @class Ext.chart.BarSeries
  1414.  * @extends Ext.chart.CartesianSeries
  1415.  * BarSeries class for the charts widget.
  1416.  * @constructor
  1417.  */
  1418. Ext.chart.BarSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1419.     type: "bar"
  1420. });
  1421. /**
  1422.  * @class Ext.chart.PieSeries
  1423.  * @extends Ext.chart.Series
  1424.  * PieSeries class for the charts widget.
  1425.  * @constructor
  1426.  */
  1427. Ext.chart.PieSeries = Ext.extend(Ext.chart.Series, {
  1428.     type: "pie",
  1429.     dataField: null,
  1430.     categoryField: null
  1431. });