pkg-charts-debug.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:61k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.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.115',     /**      * @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 {Object} flashVars      * A set of key value pairs to be passed to the flash object as flash variables. Defaults to <tt>undefined</tt>.      */     flashVars: undefined,          /**      * @cfg {Object} flashParams      * A set of key value pairs to be passed to the flash object as parameters. Possible parameters can be found here:      * http://kb2.adobe.com/cps/127/tn_12701.html Defaults to <tt>undefined</tt>.      */     flashParams: undefined,     /**      * @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(             /**              * @event initialize              *               * @param {Chart} this              */             'initialize'         );     },     onRender : function(){         Ext.FlashComponent.superclass.onRender.apply(this, arguments);         var params = Ext.apply({             allowScriptAccess: 'always',             bgcolor: this.backgroundColor,             wmode: this.wmode         }, this.flashParams), vars = Ext.apply({             allowedDomain: document.location.hostname,             elementID: this.getId(),             eventHandler: 'Ext.FlashEventProxy.onEvent'         }, this.flashVars);         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.  * To change the look and feel of a chart, see the {@link #chartStyle} and {@link #extraStyle} config options.
  794.  * @constructor
  795.  * @xtype chart
  796.  */
  797.  
  798.  Ext.chart.Chart = Ext.extend(Ext.FlashComponent, {
  799.     refreshBuffer: 100,
  800.     
  801.     /**
  802.      * @cfg {String} backgroundColor
  803.      * @hide
  804.      */
  805.     /**
  806.      * @cfg {Object} chartStyle
  807.      * Sets styles for this chart. This contains default styling, so modifying this property will <b>override</b>
  808.      * the built in styles of the chart. Use {@link #extraStyle} to add customizations to the default styling. 
  809.      */
  810.     chartStyle: {
  811.         padding: 10,
  812.         animationEnabled: true,
  813.         font: {
  814.             name: 'Tahoma',
  815.             color: 0x444444,
  816.             size: 11
  817.         },
  818.         dataTip: {
  819.             padding: 5,
  820.             border: {
  821.                 color: 0x99bbe8,
  822.                 size:1
  823.             },
  824.             background: {
  825.                 color: 0xDAE7F6,
  826.                 alpha: .9
  827.             },
  828.             font: {
  829.                 name: 'Tahoma',
  830.                 color: 0x15428B,
  831.                 size: 10,
  832.                 bold: true
  833.             }
  834.         }
  835.     },
  836.     
  837.     /**
  838.      * @cfg {String} url
  839.      * The url to load the chart from. This defaults to Ext.chart.Chart.CHART_URL, which should
  840.      * be modified to point to the local charts resource.
  841.      */
  842.     
  843.     /**
  844.      * @cfg {Object} extraStyle
  845.      * Contains extra styles that will be added or overwritten to the default chartStyle. Defaults to <tt>null</tt>.
  846.      * For a detailed list of the options available, visit the YUI Charts site 
  847.      * at <a href="http://developer.yahoo.com/yui/charts/#basicstyles">http://developer.yahoo.com/yui/charts/#basicstyles</a><br/>
  848.      * Some of the options availabe:<br />
  849.      * <ul style="padding:5px;padding-left:16px;list-style-type:inherit;">
  850.      * <li><b>padding</b> - The space around the edge of the chart's contents. Padding does not increase the size of the chart.</li>
  851.      * <li><b>animationEnabled</b> - A Boolean value that specifies whether marker animations are enabled or not. Enabled by default.</li>
  852.      * <li><b>font</b> - An Object defining the font style to be used in the chart. Defaults to <tt>{ name: 'Tahoma', color: 0x444444, size: 11 }</tt><br/>
  853.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  854.      *      <li><b>name</b> - font name</li>
  855.      *      <li><b>color</b> - font color (hex code, ie: "#ff0000", "ff0000" or 0xff0000)</li>
  856.      *      <li><b>size</b> - font size in points (numeric portion only, ie: 11)</li>
  857.      *      <li><b>bold</b> - boolean</li>
  858.      *      <li><b>italic</b> - boolean</li>
  859.      *      <li><b>underline</b> - boolean</li>
  860.      *  </ul>
  861.      * </li>
  862.      * <li><b>border</b> - An object defining the border style around the chart. The chart itself will decrease in dimensions to accomodate the border.<br/>
  863.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  864.      *      <li><b>color</b> - border color (hex code, ie: "#ff0000", "ff0000" or 0xff0000)</li>
  865.      *      <li><b>size</b> - border size in pixels (numeric portion only, ie: 1)</li>
  866.      *  </ul>
  867.      * </li>
  868.      * <li><b>background</b> - An object defining the background style of the chart.<br/>
  869.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  870.      *      <li><b>color</b> - border color (hex code, ie: "#ff0000", "ff0000" or 0xff0000)</li>
  871.      *      <li><b>image</b> - an image URL. May be relative to the current document or absolute.</li>
  872.      *  </ul>
  873.      * </li>
  874.      * <li><b>legend</b> - An object defining the legend style<br/>
  875.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  876.      *      <li><b>display</b> - location of the legend. Possible values are "none", "left", "right", "top", and "bottom".</li>
  877.      *      <li><b>spacing</b> - an image URL. May be relative to the current document or absolute.</li>
  878.      *      <li><b>padding, border, background, font</b> - same options as described above.</li>
  879.      *  </ul></li>
  880.      * <li><b>dataTip</b> - An object defining the style of the data tip (tooltip).<br/>
  881.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  882.      *      <li><b>padding, border, background, font</b> - same options as described above.</li>
  883.      *  </ul></li>
  884.      * <li><b>xAxis and yAxis</b> - An object defining the style of the style of either axis.<br/>
  885.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  886.      *      <li><b>color</b> - same option as described above.</li>
  887.      *      <li><b>size</b> - same option as described above.</li>
  888.      *      <li><b>showLabels</b> - boolean</li>
  889.      *      <li><b>labelRotation</b> - a value in degrees from -90 through 90. Default is zero.</li>
  890.      *  </ul></li>
  891.      * <li><b>majorGridLines and minorGridLines</b> - An object defining the style of the style of the grid lines.<br/>
  892.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  893.      *      <li><b>color, size</b> - same options as described above.</li>
  894.      *  </ul></li></li>
  895.      * <li><b>zeroGridLine</b> - An object defining the style of the style of the zero grid line.<br/>
  896.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  897.      *      <li><b>color, size</b> - same options as described above.</li>
  898.      *  </ul></li></li>
  899.      * <li><b>majorTicks and minorTicks</b> - An object defining the style of the style of ticks in the chart.<br/>
  900.      *  <ul style="padding:5px;padding-left:26px;list-style-type:circle;">
  901.      *      <li><b>color, size</b> - same options as described above.</li>
  902.      *      <li><b>length</b> - the length of each tick in pixels extending from the axis.</li>
  903.      *      <li><b>display</b> - how the ticks are drawn. Possible values are "none", "inside", "outside", and "cross".</li>
  904.      *  </ul></li></li>
  905.      * </ul>
  906.      */
  907.     extraStyle: null,
  908.     
  909.     /**
  910.      * @cfg {Object} seriesStyles
  911.      * Contains styles to apply to the series after a refresh. Defaults to <tt>null</tt>.
  912.      */
  913.     seriesStyles: null,
  914.     
  915.     /**
  916.      * @cfg {Boolean} disableCaching
  917.      * True to add a "cache buster" to the end of the chart url. Defaults to true for Opera and IE.
  918.      */
  919.     disableCaching: Ext.isIE || Ext.isOpera,
  920.     disableCacheParam: '_dc',
  921.     initComponent : function(){
  922.         Ext.chart.Chart.superclass.initComponent.call(this);
  923.         if(!this.url){
  924.             this.url = Ext.chart.Chart.CHART_URL;
  925.         }
  926.         if(this.disableCaching){
  927.             this.url = Ext.urlAppend(this.url, String.format('{0}={1}', this.disableCacheParam, new Date().getTime()));
  928.         }
  929.         this.addEvents(
  930.             'itemmouseover',
  931.             'itemmouseout',
  932.             'itemclick',
  933.             'itemdoubleclick',
  934.             'itemdragstart',
  935.             'itemdrag',
  936.             'itemdragend',
  937.             /**
  938.              * @event beforerefresh
  939.              * Fires before a refresh to the chart data is called.  If the beforerefresh handler returns
  940.              * <tt>false</tt> the {@link #refresh} action will be cancelled.
  941.              * @param {Chart} this
  942.              */
  943.             'beforerefresh',
  944.             /**
  945.              * @event refresh
  946.              * Fires after the chart data has been refreshed.
  947.              * @param {Chart} this
  948.              */
  949.             'refresh'
  950.         );
  951.         this.store = Ext.StoreMgr.lookup(this.store);
  952.     },
  953.     /**
  954.      * Sets a single style value on the Chart instance.
  955.      *
  956.      * @param name {String} Name of the Chart style value to change.
  957.      * @param value {Object} New value to pass to the Chart style.
  958.      */
  959.      setStyle: function(name, value){
  960.          this.swf.setStyle(name, Ext.encode(value));
  961.      },
  962.     /**
  963.      * Resets all styles on the Chart instance.
  964.      *
  965.      * @param styles {Object} Initializer for all Chart styles.
  966.      */
  967.     setStyles: function(styles){
  968.         this.swf.setStyles(Ext.encode(styles));
  969.     },
  970.     /**
  971.      * Sets the styles on all series in the Chart.
  972.      *
  973.      * @param styles {Array} Initializer for all Chart series styles.
  974.      */
  975.     setSeriesStyles: function(styles){
  976.         this.seriesStyles = styles;
  977.         var s = [];
  978.         Ext.each(styles, function(style){
  979.             s.push(Ext.encode(style));
  980.         });
  981.         this.swf.setSeriesStyles(s);
  982.     },
  983.     setCategoryNames : function(names){
  984.         this.swf.setCategoryNames(names);
  985.     },
  986.     setTipRenderer : function(fn){
  987.         var chart = this;
  988.         this.tipFnName = this.createFnProxy(function(item, index, series){
  989.             var record = chart.store.getAt(index);
  990.             return fn(chart, record, index, series);
  991.         }, this.tipFnName);
  992.         this.swf.setDataTipFunction(this.tipFnName);
  993.     },
  994.     setSeries : function(series){
  995.         this.series = series;
  996.         this.refresh();
  997.     },
  998.     /**
  999.      * Changes the data store bound to this chart and refreshes it.
  1000.      * @param {Store} store The store to bind to this chart
  1001.      */
  1002.     bindStore : function(store, initial){
  1003.         if(!initial && this.store){
  1004.             if(store !== this.store && this.store.autoDestroy){
  1005.                 this.store.destroy();
  1006.             }else{
  1007.                 this.store.un("datachanged", this.refresh, this);
  1008.                 this.store.un("add", this.delayRefresh, this);
  1009.                 this.store.un("remove", this.delayRefresh, this);
  1010.                 this.store.un("update", this.delayRefresh, this);
  1011.                 this.store.un("clear", this.refresh, this);
  1012.             }
  1013.         }
  1014.         if(store){
  1015.             store = Ext.StoreMgr.lookup(store);
  1016.             store.on({
  1017.                 scope: this,
  1018.                 datachanged: this.refresh,
  1019.                 add: this.delayRefresh,
  1020.                 remove: this.delayRefresh,
  1021.                 update: this.delayRefresh,
  1022.                 clear: this.refresh
  1023.             });
  1024.         }
  1025.         this.store = store;
  1026.         if(store && !initial){
  1027.             this.refresh();
  1028.         }
  1029.     },
  1030.     onSwfReady : function(isReset){
  1031.         Ext.chart.Chart.superclass.onSwfReady.call(this, isReset);
  1032.         this.swf.setType(this.type);
  1033.         if(this.chartStyle){
  1034.             this.setStyles(Ext.apply({}, this.extraStyle, this.chartStyle));
  1035.         }
  1036.         if(this.categoryNames){
  1037.             this.setCategoryNames(this.categoryNames);
  1038.         }
  1039.         if(this.tipRenderer){
  1040.             this.setTipRenderer(this.tipRenderer);
  1041.         }
  1042.         if(!isReset){
  1043.             this.bindStore(this.store, true);
  1044.         }
  1045.         this.refresh.defer(10, this);
  1046.     },
  1047.     delayRefresh : function(){
  1048.         if(!this.refreshTask){
  1049.             this.refreshTask = new Ext.util.DelayedTask(this.refresh, this);
  1050.         }
  1051.         this.refreshTask.delay(this.refreshBuffer);
  1052.     },
  1053.     refresh : function(){
  1054.         if(this.fireEvent('beforerefresh', this) !== false){
  1055.         var styleChanged = false;
  1056.         // convert the store data into something YUI charts can understand
  1057.         var data = [], rs = this.store.data.items;
  1058.         for(var j = 0, len = rs.length; j < len; j++){
  1059.             data[j] = rs[j].data;
  1060.         }
  1061.         //make a copy of the series definitions so that we aren't
  1062.         //editing them directly.
  1063.         var dataProvider = [];
  1064.         var seriesCount = 0;
  1065.         var currentSeries = null;
  1066.         var i = 0;
  1067.         if(this.series){
  1068.             seriesCount = this.series.length;
  1069.             for(i = 0; i < seriesCount; i++){
  1070.                 currentSeries = this.series[i];
  1071.                 var clonedSeries = {};
  1072.                 for(var prop in currentSeries){
  1073.                     if(prop == "style" && currentSeries.style !== null){
  1074.                         clonedSeries.style = Ext.encode(currentSeries.style);
  1075.                         styleChanged = true;
  1076.                         //we don't want to modify the styles again next time
  1077.                         //so null out the style property.
  1078.                         // this causes issues
  1079.                         // currentSeries.style = null;
  1080.                     } else{
  1081.                         clonedSeries[prop] = currentSeries[prop];
  1082.                     }
  1083.                 }
  1084.                 dataProvider.push(clonedSeries);
  1085.             }
  1086.         }
  1087.         if(seriesCount > 0){
  1088.             for(i = 0; i < seriesCount; i++){
  1089.                 currentSeries = dataProvider[i];
  1090.                 if(!currentSeries.type){
  1091.                     currentSeries.type = this.type;
  1092.                 }
  1093.                 currentSeries.dataProvider = data;
  1094.             }
  1095.         } else{
  1096.             dataProvider.push({type: this.type, dataProvider: data});
  1097.         }
  1098.         this.swf.setDataProvider(dataProvider);
  1099.         if(this.seriesStyles){
  1100.             this.setSeriesStyles(this.seriesStyles);
  1101.         }
  1102.             this.fireEvent('refresh', this);
  1103.         }
  1104.     },
  1105.     createFnProxy : function(fn, old){
  1106.         if(old){
  1107.             delete window[old];
  1108.         }
  1109.         var fnName = "extFnProxy" + (++Ext.chart.Chart.PROXY_FN_ID);
  1110.         window[fnName] = fn;
  1111.         return fnName;
  1112.     },
  1113.     
  1114.     onDestroy: function(){
  1115.         Ext.chart.Chart.superclass.onDestroy.call(this);
  1116.         this.bindStore(null);
  1117.         var tip = this.tipFnName;
  1118.         if(!Ext.isEmpty(tip)){
  1119.             delete window[tip];
  1120.         }
  1121.     }
  1122. });
  1123. Ext.reg('chart', Ext.chart.Chart);
  1124. Ext.chart.Chart.PROXY_FN_ID = 0;
  1125. /**
  1126.  * Sets the url to load the chart from. This should be set to a local resource.
  1127.  * @static
  1128.  * @type String
  1129.  */
  1130. Ext.chart.Chart.CHART_URL = 'http:/' + '/yui.yahooapis.com/2.7.0/build/charts/assets/charts.swf';
  1131. /**
  1132.  * @class Ext.chart.PieChart
  1133.  * @extends Ext.chart.Chart
  1134.  * @constructor
  1135.  * @xtype piechart
  1136.  */
  1137. Ext.chart.PieChart = Ext.extend(Ext.chart.Chart, {
  1138.     type: 'pie',
  1139.     onSwfReady : function(isReset){
  1140.         Ext.chart.PieChart.superclass.onSwfReady.call(this, isReset);
  1141.         this.setDataField(this.dataField);
  1142.         this.setCategoryField(this.categoryField);
  1143.     },
  1144.     setDataField : function(field){
  1145.         this.dataField = field;
  1146.         this.swf.setDataField(field);
  1147.     },
  1148.     setCategoryField : function(field){
  1149.         this.categoryField = field;
  1150.         this.swf.setCategoryField(field);
  1151.     }
  1152. });
  1153. Ext.reg('piechart', Ext.chart.PieChart);
  1154. /**
  1155.  * @class Ext.chart.CartesianChart
  1156.  * @extends Ext.chart.Chart
  1157.  * @constructor
  1158.  * @xtype cartesianchart
  1159.  */
  1160. Ext.chart.CartesianChart = Ext.extend(Ext.chart.Chart, {
  1161.     onSwfReady : function(isReset){
  1162.         Ext.chart.CartesianChart.superclass.onSwfReady.call(this, isReset);
  1163.         if(this.xField){
  1164.             this.setXField(this.xField);
  1165.         }
  1166.         if(this.yField){
  1167.             this.setYField(this.yField);
  1168.         }
  1169.         if(this.xAxis){
  1170.             this.setXAxis(this.xAxis);
  1171.         }
  1172.         if(this.yAxis){
  1173.             this.setYAxis(this.yAxis);
  1174.         }
  1175.     },
  1176.     setXField : function(value){
  1177.         this.xField = value;
  1178.         this.swf.setHorizontalField(value);
  1179.     },
  1180.     setYField : function(value){
  1181.         this.yField = value;
  1182.         this.swf.setVerticalField(value);
  1183.     },
  1184.     setXAxis : function(value){
  1185.         this.xAxis = this.createAxis('xAxis', value);
  1186.         this.swf.setHorizontalAxis(this.xAxis);
  1187.     },
  1188.     setYAxis : function(value){
  1189.         this.yAxis = this.createAxis('yAxis', value);
  1190.         this.swf.setVerticalAxis(this.yAxis);
  1191.     },
  1192.     createAxis : function(axis, value){
  1193.         var o = Ext.apply({}, value), oldFn = null;
  1194.         if(this[axis]){
  1195.             oldFn = this[axis].labelFunction;
  1196.         }
  1197.         if(o.labelRenderer){
  1198.             var fn = o.labelRenderer;
  1199.             o.labelFunction = this.createFnProxy(function(v){
  1200.                 return fn(v);
  1201.             }, oldFn);
  1202.             delete o.labelRenderer;
  1203.         }
  1204.         return o;
  1205.     }
  1206. });
  1207. Ext.reg('cartesianchart', Ext.chart.CartesianChart);
  1208. /**
  1209.  * @class Ext.chart.LineChart
  1210.  * @extends Ext.chart.CartesianChart
  1211.  * @constructor
  1212.  * @xtype linechart
  1213.  */
  1214. Ext.chart.LineChart = Ext.extend(Ext.chart.CartesianChart, {
  1215.     type: 'line'
  1216. });
  1217. Ext.reg('linechart', Ext.chart.LineChart);
  1218. /**
  1219.  * @class Ext.chart.ColumnChart
  1220.  * @extends Ext.chart.CartesianChart
  1221.  * @constructor
  1222.  * @xtype columnchart
  1223.  */
  1224. Ext.chart.ColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1225.     type: 'column'
  1226. });
  1227. Ext.reg('columnchart', Ext.chart.ColumnChart);
  1228. /**
  1229.  * @class Ext.chart.StackedColumnChart
  1230.  * @extends Ext.chart.CartesianChart
  1231.  * @constructor
  1232.  * @xtype stackedcolumnchart
  1233.  */
  1234. Ext.chart.StackedColumnChart = Ext.extend(Ext.chart.CartesianChart, {
  1235.     type: 'stackcolumn'
  1236. });
  1237. Ext.reg('stackedcolumnchart', Ext.chart.StackedColumnChart);
  1238. /**
  1239.  * @class Ext.chart.BarChart
  1240.  * @extends Ext.chart.CartesianChart
  1241.  * @constructor
  1242.  * @xtype barchart
  1243.  */
  1244. Ext.chart.BarChart = Ext.extend(Ext.chart.CartesianChart, {
  1245.     type: 'bar'
  1246. });
  1247. Ext.reg('barchart', Ext.chart.BarChart);
  1248. /**
  1249.  * @class Ext.chart.StackedBarChart
  1250.  * @extends Ext.chart.CartesianChart
  1251.  * @constructor
  1252.  * @xtype stackedbarchart
  1253.  */
  1254. Ext.chart.StackedBarChart = Ext.extend(Ext.chart.CartesianChart, {
  1255.     type: 'stackbar'
  1256. });
  1257. Ext.reg('stackedbarchart', Ext.chart.StackedBarChart);
  1258. /**
  1259.  * @class Ext.chart.Axis
  1260.  * Defines a CartesianChart's vertical or horizontal axis.
  1261.  * @constructor
  1262.  */
  1263. Ext.chart.Axis = function(config){
  1264.     Ext.apply(this, config);
  1265. };
  1266. Ext.chart.Axis.prototype =
  1267. {
  1268.     /**
  1269.      * The type of axis.
  1270.      *
  1271.      * @property type
  1272.      * @type String
  1273.      */
  1274.     type: null,
  1275.     /**
  1276.      * The direction in which the axis is drawn. May be "horizontal" or "vertical".
  1277.      *
  1278.      * @property orientation
  1279.      * @type String
  1280.      */
  1281.     orientation: "horizontal",
  1282.     /**
  1283.      * If true, the items on the axis will be drawn in opposite direction.
  1284.      *
  1285.      * @property reverse
  1286.      * @type Boolean
  1287.      */
  1288.     reverse: false,
  1289.     /**
  1290.      * A string reference to the globally-accessible function that may be called to
  1291.      * determine each of the label values for this axis.
  1292.      *
  1293.      * @property labelFunction
  1294.      * @type String
  1295.      */
  1296.     labelFunction: null,
  1297.     /**
  1298.      * If true, labels that overlap previously drawn labels on the axis will be hidden.
  1299.      *
  1300.      * @property hideOverlappingLabels
  1301.      * @type Boolean
  1302.      */
  1303.     hideOverlappingLabels: true
  1304. };
  1305. /**
  1306.  * @class Ext.chart.NumericAxis
  1307.  * @extends Ext.chart.Axis
  1308.  * A type of axis whose units are measured in numeric values.
  1309.  * @constructor
  1310.  */
  1311. Ext.chart.NumericAxis = Ext.extend(Ext.chart.Axis, {
  1312.     type: "numeric",
  1313.     /**
  1314.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1315.      * will be calculated automatically.
  1316.      *
  1317.      * @property minimum
  1318.      * @type Number
  1319.      */
  1320.     minimum: NaN,
  1321.     /**
  1322.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1323.      * will be calculated automatically.
  1324.      *
  1325.      * @property maximum
  1326.      * @type Number
  1327.      */
  1328.     maximum: NaN,
  1329.     /**
  1330.      * The spacing between major intervals on this axis.
  1331.      *
  1332.      * @property majorUnit
  1333.      * @type Number
  1334.      */
  1335.     majorUnit: NaN,
  1336.     /**
  1337.      * The spacing between minor intervals on this axis.
  1338.      *
  1339.      * @property minorUnit
  1340.      * @type Number
  1341.      */
  1342.     minorUnit: NaN,
  1343.     /**
  1344.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1345.      * the nearest major or minor unit. If false, their position will be based
  1346.      * on the minimum value.
  1347.      *
  1348.      * @property snapToUnits
  1349.      * @type Boolean
  1350.      */
  1351.     snapToUnits: true,
  1352.     /**
  1353.      * If true, and the bounds are calculated automatically, either the minimum or
  1354.      * maximum will be set to zero.
  1355.      *
  1356.      * @property alwaysShowZero
  1357.      * @type Boolean
  1358.      */
  1359.     alwaysShowZero: true,
  1360.     /**
  1361.      * The scaling algorithm to use on this axis. May be "linear" or "logarithmic".
  1362.      *
  1363.      * @property scale
  1364.      * @type String
  1365.      */
  1366.     scale: "linear"
  1367. });
  1368. /**
  1369.  * @class Ext.chart.TimeAxis
  1370.  * @extends Ext.chart.Axis
  1371.  * A type of axis whose units are measured in time-based values.
  1372.  * @constructor
  1373.  */
  1374. Ext.chart.TimeAxis = Ext.extend(Ext.chart.Axis, {
  1375.     type: "time",
  1376.     /**
  1377.      * The minimum value drawn by the axis. If not set explicitly, the axis minimum
  1378.      * will be calculated automatically.
  1379.      *
  1380.      * @property minimum
  1381.      * @type Date
  1382.      */
  1383.     minimum: null,
  1384.     /**
  1385.      * The maximum value drawn by the axis. If not set explicitly, the axis maximum
  1386.      * will be calculated automatically.
  1387.      *
  1388.      * @property maximum
  1389.      * @type Number
  1390.      */
  1391.     maximum: null,
  1392.     /**
  1393.      * The spacing between major intervals on this axis.
  1394.      *
  1395.      * @property majorUnit
  1396.      * @type Number
  1397.      */
  1398.     majorUnit: NaN,
  1399.     /**
  1400.      * The time unit used by the majorUnit.
  1401.      *
  1402.      * @property majorTimeUnit
  1403.      * @type String
  1404.      */
  1405.     majorTimeUnit: null,
  1406.     /**
  1407.      * The spacing between minor intervals on this axis.
  1408.      *
  1409.      * @property majorUnit
  1410.      * @type Number
  1411.      */
  1412.     minorUnit: NaN,
  1413.     /**
  1414.      * The time unit used by the minorUnit.
  1415.      *
  1416.      * @property majorTimeUnit
  1417.      * @type String
  1418.      */
  1419.     minorTimeUnit: null,
  1420.     /**
  1421.      * If true, the labels, ticks, gridlines, and other objects will snap to
  1422.      * the nearest major or minor unit. If false, their position will be based
  1423.      * on the minimum value.
  1424.      *
  1425.      * @property snapToUnits
  1426.      * @type Boolean
  1427.      */
  1428.     snapToUnits: true
  1429. });
  1430. /**
  1431.  * @class Ext.chart.CategoryAxis
  1432.  * @extends Ext.chart.Axis
  1433.  * A type of axis that displays items in categories.
  1434.  * @constructor
  1435.  */
  1436. Ext.chart.CategoryAxis = Ext.extend(Ext.chart.Axis, {
  1437.     type: "category",
  1438.     /**
  1439.      * A list of category names to display along this axis.
  1440.      *
  1441.      * @property categoryNames
  1442.      * @type Array
  1443.      */
  1444.     categoryNames: null
  1445. });
  1446. /**
  1447.  * @class Ext.chart.Series
  1448.  * Series class for the charts widget.
  1449.  * @constructor
  1450.  */
  1451. Ext.chart.Series = function(config) { Ext.apply(this, config); };
  1452. Ext.chart.Series.prototype =
  1453. {
  1454.     /**
  1455.      * The type of series.
  1456.      *
  1457.      * @property type
  1458.      * @type String
  1459.      */
  1460.     type: null,
  1461.     /**
  1462.      * The human-readable name of the series.
  1463.      *
  1464.      * @property displayName
  1465.      * @type String
  1466.      */
  1467.     displayName: null
  1468. };
  1469. /**
  1470.  * @class Ext.chart.CartesianSeries
  1471.  * @extends Ext.chart.Series
  1472.  * CartesianSeries class for the charts widget.
  1473.  * @constructor
  1474.  */
  1475. Ext.chart.CartesianSeries = Ext.extend(Ext.chart.Series, {
  1476.     /**
  1477.      * The field used to access the x-axis value from the items from the data source.
  1478.      *
  1479.      * @property xField
  1480.      * @type String
  1481.      */
  1482.     xField: null,
  1483.     /**
  1484.      * The field used to access the y-axis value from the items from the data source.
  1485.      *
  1486.      * @property yField
  1487.      * @type String
  1488.      */
  1489.     yField: null
  1490. });
  1491. /**
  1492.  * @class Ext.chart.ColumnSeries
  1493.  * @extends Ext.chart.CartesianSeries
  1494.  * ColumnSeries class for the charts widget.
  1495.  * @constructor
  1496.  */
  1497. Ext.chart.ColumnSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1498.     type: "column"
  1499. });
  1500. /**
  1501.  * @class Ext.chart.LineSeries
  1502.  * @extends Ext.chart.CartesianSeries
  1503.  * LineSeries class for the charts widget.
  1504.  * @constructor
  1505.  */
  1506. Ext.chart.LineSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1507.     type: "line"
  1508. });
  1509. /**
  1510.  * @class Ext.chart.BarSeries
  1511.  * @extends Ext.chart.CartesianSeries
  1512.  * BarSeries class for the charts widget.
  1513.  * @constructor
  1514.  */
  1515. Ext.chart.BarSeries = Ext.extend(Ext.chart.CartesianSeries, {
  1516.     type: "bar"
  1517. });
  1518. /**
  1519.  * @class Ext.chart.PieSeries
  1520.  * @extends Ext.chart.Series
  1521.  * PieSeries class for the charts widget.
  1522.  * @constructor
  1523.  */
  1524. Ext.chart.PieSeries = Ext.extend(Ext.chart.Series, {
  1525.     type: "pie",
  1526.     dataField: null,
  1527.     categoryField: null
  1528. });