亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? chartingbase.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
this.__layoutComponent();this.layoutAllChildren();};_p.__layoutChildren=function()
{if(!this.getCreated())
return;var y=0;var cs=this.getChildren();for(var i=0;i<cs.length;i++)
{cs[i].setTop(y);y+=cs[i].getPreferredHeight();}};_p.layoutAllChildren=function()
{this.__layoutChildren();BiComponent.prototype.layoutAllChildren.call(this);};_p.layoutAllChildrenY=function()
{this.__layoutChildren();BiComponent.prototype.layoutAllChildrenY.call(this);};_p.getPreferredWidth=function()
{var pw=0;var cs=this.getChildren();for(var i=0;i<cs.length;i++)
{pw=Math.max(pw,cs[i].getPreferredWidth());}
return this.getInsetLeft()+this.getInsetRight()+pw;};_p.getPreferredHeight=function()
{var ph=0;var cs=this.getChildren();for(var i=0;i<cs.length;i++)
{ph+=cs[i].getPreferredHeight();}
return this.getInsetTop()+this.getInsetBottom()+ph;};_p.setFontSize=function(n)
{if(n!=this._fontSize)
{this._fontSize=n;var cs=this.getChildren();for(var i=0;i<cs.length;i++)
cs[i].setStyleProperty("fontSize",n+"px");this.layoutComponent();}};_p.dispose=function(){if(this._disposed)return;BiComponent.prototype.dispose.call(this);this._graph=null;};_p.fromXmlElement=function(oNode){this.setVisible(oNode.getAttribute("Visible")!="false");};_p.toXmlElement=function(oDoc){var el=oDoc.createElement("Legend");el.setAttribute("Visible",String(this.getVisible()));return el;};_p._setTop=function(n){BiComponent.prototype.setTop.call(this,n);};_p.setTop=function(nTop){this._topSet=nTop!=null;BiComponent.prototype.setTop.call(this,nTop);};_p.setLocation=function(nLeft,nTop){this._topSet=nTop!=null;BiComponent.prototype.setLocation.call(this,nLeft,nTop);};function BiChartLegendLabel(oLegendFor){BiLabel.call(this);this._legendFor=oLegendFor;this.setPadding(2);this.setText(oLegendFor.getTitle());this.setIcon(oLegendFor);this.setLeft(0);this.setRight(0);}
var _p=BiChartLegendLabel.prototype=new BiLabel;_p._className="BiChartLegendLabel";_p._legendFor=null;BiChartLegendLabel.prototype.getLegendFor=function(){return this._legendFor;};_p.setLegendFor=function(oLegendFor){this._legendFor=oLegendFor;this.setText(oLegendFor.getTitle());this.setIcon(oLegendFor);};_p.dispose=function(){if(this.getDisposed())return;BiLabel.prototype.dispose.call(this);this._graph=null;this._legendFor=null;};function BiChartPoint(oGraph,sSeriesId,sCategoryId){BiObject.call(this);this._graph=oGraph;this._seriesId=sSeriesId;this._categoryId=sCategoryId;};var _p=BiChartPoint.prototype=new BiObject;_p._className="BiChartPoint";_p._categoryId=null;_p._seriesId=null;_p._fillOpacity=null;_p._fillColor=null;_p._fillColor2=null;_p._fillType=null;_p._fillAngle=null;_p._strokeOpacity=null;_p._strokeColor=null;BiChartPoint.prototype.getCategoryId=function(){return this._categoryId;};BiChartPoint.prototype.getSeriesId=function(){return this._seriesId;};BiChartPoint.prototype.getFillOpacity=function(){return this._fillOpacity;};BiChartPoint.prototype.getFillColor=function(){return this._fillColor;};BiChartPoint.prototype.getFillColor2=function(){return this._fillColor2;};BiChartPoint.prototype.getFillType=function(){return this._fillType;};BiChartPoint.prototype.getFillAngle=function(){return this._fillAngle;};BiChartPoint.prototype.getStrokeOpacity=function(){return this._strokeOpacity;};BiChartPoint.prototype.getStrokeColor=function(){return this._strokeColor;};BiChartPoint.prototype.getMarkerType=function(){return this._markerType;};BiChartPoint.prototype.getMarkerVisible=function(){return this._markerVisible;};BiChartPoint.prototype.getExplode=function(){return this._explode;};_p.hasFillOpacity=function(){return this._fillOpacity!=null;};_p.hasFillColor=function(){return this._fillColor!=null;};_p.hasFillColor2=function(){return this._fillColor2!=null;};_p.hasFillType=function(){return this._fillType!=null;};_p.hasFillAngle=function(){return this._fillAngle!=null;};_p.hasStrokeOpacity=function(){return this._strokeOpacity!=null;};_p.hasStrokeColor=function(){return this._strokeColor!=null;};_p.hasMarkerType=function(){return this._markerType!=null;};_p.hasMarkerVisible=function(){return this._markerVisible!=null;};_p.hasExplode=function(){return this._explode!=null;};_p.getComponent=function(){var s=this._graph.getSeriesById(this._seriesId);var c=this._graph.getChartForSeries(s);if(!c)return null;var cat=this._graph.getCategoryById(this._categoryId);return c.getComponentForCategory(cat);};BiChartPoint.fromXmlElement=function(oGraph,oNode){var p=new BiChartPoint(oGraph);p.fromXmlElement(oNode);return p;};_p.fromXmlElement=function(oNode){var seriesId=oNode.getAttribute("Series");var categoryId=oNode.getAttribute("Category");this._seriesId=seriesId;this._categoryId=categoryId;var n=oNode.selectSingleNode("Stroke/@Opacity");if(n)this.setStrokeOpacity(Number(n.text));n=oNode.selectSingleNode("Stroke/@Color");if(n)this.setStrokeColor(n.text);n=oNode.selectSingleNode("Fill/@Opacity");if(n)this.setFillOpacity(Number(n.text));n=oNode.selectSingleNode("Fill/@Color");if(n)this.setFillColor(n.text);n=oNode.selectSingleNode("Fill/@Color2");if(n)this.setFillColor2(n.text);n=oNode.selectSingleNode("Fill/@Type");if(n)this.setFillType(n.text);n=oNode.selectSingleNode("Fill/@Angle");if(n)this.setFillAngle(n.text);n=oNode.selectSingleNode("Marker/@Type");if(n)this.setMarkerType(n.text);n=oNode.selectSingleNode("Marker/@Visible");if(n)this.setMarkerVisible(n.text!="false");n=oNode.selectSingleNode("Explode");if(n)this.setExplode(Number(n.text));};_p.toXmlElement=function(oDoc){var p=oDoc.createElement("Point");p.setAttribute("Series",this.getSeriesId())
p.setAttribute("Category",this.getCategoryId())
var el;if(this.hasStrokeColor()||this.hasStrokeOpacity()){el=oDoc.createElement("Stroke");if(this.hasStrokeOpacity())
el.setAttribute("Opacity",String(this.getStrokeOpacity()));if(this.hasStrokeColor())
el.setAttribute("Color",this.getStrokeColor());p.appendChild(el);}
if(this.hasFillColor()||this.hasFillColor2()||this.hasFillType()||this.hasFillAngle()||this.hasFillOpacity()){el=oDoc.createElement("Fill");if(this.hasFillOpacity())
el.setAttribute("Opacity",String(this.getFillOpacity()));if(this.hasFillColor())
el.setAttribute("Color",this.getFillColor());if(this.hasFillColor2())
el.setAttribute("Color2",this.getFillColor2());if(this.hasFillType())
el.setAttribute("Type",this.getFillType());if(this.hasFillAngle())
el.setAttribute("Angle",this.getFillAngle());p.appendChild(el);}
if(this.hasMarkerVisible()||this.hasMarkerType()){el=oDoc.createElement("Marker");if(this.hasMarkerVisible())
el.setAttribute("Visible",this.getMarkerVisible());if(this.hasMarkerType())
el.setAttribute("Type",this.getMarkerType());p.appendChild(el);}
if(this.hasExplode()){el=oDoc.createElement("Explode");el.appendChild(oDoc.createTextNode(String(this.getExplode())));p.appendChild(el);}
return p;};_p.dispose=function(){if(this._disposed)return;this._graph=null;};_p._setPropForPoint=function(sFieldName,sSetterName,oArg){this[sFieldName]=oArg;var g=this._graph
var c=g.getComponentByIds(this._seriesId,this._categoryId);if(c)
c[sSetterName](oArg);};_p.setFillOpacity=function(v){this._setPropForPoint("_fillOpacity","setFillOpacity",v);};_p.setFillColor=function(v){this._setPropForPoint("_fillColor","setFillColor",v);};_p.setFillColor2=function(v){this._setPropForPoint("_fillColor2","setFillColor2",v);};_p.setFillType=function(v){this._setPropForPoint("_fillType","setFillType",v);};_p.setFillAngle=function(v){this._setPropForPoint("_fillAngle","setFillAngle",v);};_p.setStrokeOpacity=function(v){this._setPropForPoint("_strokeOpacity","setStrokeOpacity",v);};_p.setStrokeColor=function(v){this._setPropForPoint("_strokeColor","setStrokeColor",v);};_p.setMarkerType=function(v){this._setPropForPoint("_markerType","setMarkerType",v);};_p.setMarkerVisible=function(v){this._setPropForPoint("_markerVisible","setMarkerVisible",v);};_p.setExplode=function(v){this._setPropForPoint("_explode","setExplode",v);};function BiChartPresentation(oGraph,oSeries){BiObject.call(this);this._graph=oGraph;this._series=oSeries;};var _p=BiChartPresentation.prototype=new BiObject;_p._className="BiChartPresentation";_p._fillOpacity=null;_p._fillColor=null;_p._fillColor2=null;_p._fillType=null;_p._fillAngle=null;_p._strokeOpacity=null;_p._strokeColor=null;_p._markerType=null;_p._markerVisible=null;_p._explode=null;_p._barSpacing=null;BiChartPresentation.prototype.getGraph=function(){return this._graph;};BiChartPresentation.prototype.getSeries=function(){return this._series;};BiChartPresentation.prototype.getFillOpacity=function(){return this._fillOpacity;};BiChartPresentation.prototype.setFillOpacity=function(v){this._fillOpacity=v;};BiChartPresentation.prototype.getFillColor=function(){return this._fillColor;};BiChartPresentation.prototype.setFillColor=function(v){this._fillColor=v;};BiChartPresentation.prototype.getFillColor2=function(){return this._fillColor2;};BiChartPresentation.prototype.setFillColor2=function(v){this._fillColor2=v;};BiChartPresentation.prototype.getFillType=function(){return this._fillType;};BiChartPresentation.prototype.setFillType=function(v){this._fillType=v;};BiChartPresentation.prototype.getFillAngle=function(){return this._fillAngle;};BiChartPresentation.prototype.setFillAngle=function(v){this._fillAngle=v;};BiChartPresentation.prototype.getStrokeColor=function(){return this._strokeColor;};BiChartPresentation.prototype.setStrokeColor=function(v){this._strokeColor=v;};BiChartPresentation.prototype.getStrokeOpacity=function(){return this._strokeOpacity;};BiChartPresentation.prototype.setStrokeOpacity=function(v){this._strokeOpacity=v;};BiChartPresentation.prototype.getMarkerType=function(){return this._markerType;};BiChartPresentation.prototype.setMarkerType=function(v){this._markerType=v;};BiChartPresentation.prototype.getMarkerVisible=function(){return this._markerVisible;};BiChartPresentation.prototype.setMarkerVisible=function(v){this._markerVisible=v;};BiChartPresentation.prototype.getExplode=function(){return this._explode;};BiChartPresentation.prototype.setExplode=function(v){this._explode=v;};BiChartPresentation.prototype.getBarSpacing=function(){return this._barSpacing;};_p.hasFillOpacity=function(){return this._fillOpacity!=null;};_p.hasFillColor=function(){return this._fillColor!=null;};_p.hasFillColor2=function(){return this._fillColor2!=null;};_p.hasFillType=function(){return this._fillType!=null;};_p.hasFillAngle=function(){return this._fillAngle!=null;};_p.hasStrokeColor=function(){return this._strokeColor!=null;};_p.hasStrokeOpacity=function(){return this._strokeOpacity!=null;};_p.hasMarkerType=function(){return this._markerType!=null;};_p.hasMarkerVisible=function(){return this._markerVisible!=null;};_p.hasExplode=function(){return this._explode!=null;};_p.hasBarSpacing=function(){return this._barSpacing!=null;};_p.setBarSpacing=function(n)
{this._barSpacing=n;this._graph.getPresentationManager().setBarSpacingForPoint(null,null,n);};BiChartPresentation.fromXmlElement=function(oGraph,oNode){var p=new BiChartPresentation(oGraph);p.fromXmlElement(oNode);if(p._series==null)
return null;return p;};_p.fromXmlElement=function(oNode){var seriesId=oNode.getAttribute("Series");var series=this._graph.getSeriesById(seriesId);if(!series)
return null;this._series=series;var n=oNode.selectSingleNode("Stroke/@Opacity");if(n)this.setStrokeOpacity(Number(n.text));n=oNode.selectSingleNode("Stroke/@Color");if(n)this.setStrokeColor(n.text);n=oNode.selectSingleNode("Fill/@Opacity");if(n)this.setFillOpacity(Number(n.text));n=oNode.selectSingleNode("Fill/@Color");if(n)this.setFillColor(n.text);n=oNode.selectSingleNode("Fill/@Color2");if(n)this.setFillColor2(n.text);n=oNode.selectSingleNode("Fill/@Type");if(n)this.setFillType(n.text);n=oNode.selectSingleNode("Fill/@Angle");if(n)this.setFillAngle(n.text);n=oNode.selectSingleNode("Marker/@Type");if(n)this.setMarkerType(n.text);n=oNode.selectSingleNode("Marker/@Visible");if(n)this.setMarkerVisible(n.text!="false");n=oNode.selectSingleNode("Explode");if(n)this.setExplode(Number(n.text));n=oNode.selectSingleNode("BarSpacing");if(n)this.setBarSpacing(Number(n.text));};_p.toXmlElement=function(oDoc){var c=oDoc.createElement("Chart");c.setAttribute("Series",this.getSeries().getId());var el;if(this.hasStrokeColor()||this.hasStrokeOpacity()){el=oDoc.createElement("Stroke");if(this.hasStrokeOpacity())
el.setAttribute("Opacity",String(this.getStrokeOpacity()));if(this.hasStrokeColor())
el.setAttribute("Color",this.getStrokeColor());c.appendChild(el);}
if(this.hasFillColor()||this.hasFillColor2()||this.hasFillType()||this.hasFillAngle()||this.hasFillOpacity()){el=oDoc.createElement("Fill");if(this.hasFillOpacity())
el.setAttribute("Opacity",String(this.getFillOpacity()));if(this.hasFillColor())
el.setAttribute("Color",this.getFillColor());if(this.hasFillColor2())
el.setAttribute("Color2",this.getFillColor2());if(this.hasFillType())
el.setAttribute("Type",this.getFillType());if(this.hasFillAngle())
el.setAttribute("Angle",this.getFillAngle());c.appendChild(el);}
if(this.hasMarkerVisible()||this.hasMarkerType()){el=oDoc.createElement("Marker");if(this.hasMarkerVisible())
el.setAttribute("Visible",this.getMarkerVisible());if(this.hasMarkerType())
el.setAttribute("Type",this.getMarkerType());c.appendChild(el);}
if(this.hasExplode()){el=oDoc.createElement("Explode");el.appendChild(oDoc.createTextNode(String(this.getExplode())));c.appendChild(el);}
if(this.hasBarSpacing()){el=oDoc.createElement("BarSpacing");el.appendChild(oDoc.createTextNode(String(this.getBarSpacing())));c.appendChild(el);}
return c;};_p.dispose=function(){if(this._disposed)return;this._graph=null;this._series=null;};function BiChartPresentationManager(oGraph){BiObject.call(this);this._graph=oGraph;}
var _p=BiChartPresentationManager.prototype=new BiObject;_p._className="BiChartPresentationManager";_p._barSpacing=null;_p._defaultColors=["Red","Green","Blue","Yellow","Aqua","Fuchsia","Lime","Maroon","Navy","Olive","Purple","Teal"];_p.getDefaultColor=function(sSeriesId,sCategoryId){var i=this._getDefaulSettingIndex(sSeriesId,sCategoryId);if(i>=this._defaultColors.length){return"#"+Math.floor(Math.random()*16).toString(16)+Math.floor(Math.random()*16).toString(16)+Math.floor(Math.random()*16).toString(16);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线精品免费av| 久久精品国产精品亚洲精品| 制服.丝袜.亚洲.另类.中文| 国产精品一区二区不卡| 亚洲成人综合视频| 国产精品大尺度| 欧美电视剧免费全集观看| 91蝌蚪porny| 国产精品18久久久久久久久| 午夜久久久影院| 亚洲欧美偷拍三级| 国产亚洲欧美一级| 精品粉嫩超白一线天av| 欧美另类z0zxhd电影| 91老司机福利 在线| 成人黄色小视频| 久久精品国产99久久6| 丝袜亚洲另类欧美| 亚洲国产你懂的| 亚洲天堂2014| 国产精品免费网站在线观看| 久久综合狠狠综合久久综合88| 6080午夜不卡| 欧美日韩视频在线第一区| 色综合久久久久综合体| 成人动漫精品一区二区| 成人福利视频在线看| 国产91综合网| 国产成人午夜视频| 国产一区在线看| 韩日av一区二区| 国产美女精品在线| 国产成人超碰人人澡人人澡| 国产一区二区三区在线观看免费| 免费看欧美美女黄的网站| 日本免费新一区视频| 丝袜亚洲精品中文字幕一区| 婷婷丁香久久五月婷婷| 亚洲成人动漫在线观看| 亚洲国产色一区| 日韩国产欧美视频| 日本免费在线视频不卡一不卡二| 免费观看成人av| 美国毛片一区二区| 韩国欧美一区二区| 国产精品一区专区| 成人免费福利片| 色哟哟国产精品| 欧美在线视频日韩| 欧美高清精品3d| 日韩亚洲欧美在线| 久久亚洲综合色一区二区三区| 久久嫩草精品久久久精品一| 中文字幕不卡在线| 亚洲激情av在线| 五月天中文字幕一区二区| 青青草精品视频| 国产成人av网站| 91小视频免费看| 欧美日韩国产另类不卡| 精品免费国产一区二区三区四区| 久久精品一区二区三区四区| 国产精品国产三级国产aⅴ中文| 亚洲男女一区二区三区| 日韩精品一级中文字幕精品视频免费观看| 肉色丝袜一区二区| 国产成人精品影视| 日本道精品一区二区三区| 欧美色男人天堂| 精品欧美一区二区在线观看| 国产精品乱码人人做人人爱 | 亚洲成人福利片| 老鸭窝一区二区久久精品| 国产91精品在线观看| 91激情五月电影| 欧美成人精品福利| 国产精品毛片高清在线完整版| 亚洲五码中文字幕| 国产精品一区二区久久精品爱涩| 91网站最新网址| 日韩午夜在线观看| 中文字幕亚洲一区二区av在线| 偷拍自拍另类欧美| 成人av在线影院| 56国语精品自产拍在线观看| 欧美极品美女视频| 日精品一区二区三区| 成人国产一区二区三区精品| 91精品啪在线观看国产60岁| 亚洲欧洲日韩一区二区三区| 久久精品理论片| 色就色 综合激情| 国产欧美视频在线观看| 日韩av二区在线播放| 91偷拍与自偷拍精品| 亚洲精品一线二线三线| 亚洲国产一区二区在线播放| 丁香一区二区三区| 日韩一卡二卡三卡| 一区二区三区欧美日| 国产成人精品免费看| 欧美一级二级在线观看| 夜夜精品视频一区二区| 不卡电影一区二区三区| 精品理论电影在线| 水野朝阳av一区二区三区| 94色蜜桃网一区二区三区| 欧美精彩视频一区二区三区| 美国一区二区三区在线播放| 欧美色图激情小说| 亚洲欧美日韩小说| 成人三级在线视频| 久久久美女毛片| 精品午夜久久福利影院| 日韩一级大片在线| 日韩av不卡一区二区| 欧美老肥妇做.爰bbww| 亚洲一区二区三区三| 色综合久久久久综合体| 亚洲天堂网中文字| 97se亚洲国产综合自在线| 日本一区二区三区电影| 国产成人aaa| 国产蜜臀av在线一区二区三区| 精品一区二区久久久| 欧美本精品男人aⅴ天堂| 免费成人av资源网| 日韩欧美资源站| 久草精品在线观看| 精品国精品自拍自在线| 久久国产精品无码网站| 日韩免费看网站| 久久精品国产亚洲a| 日韩欧美aaaaaa| 国内国产精品久久| 久久久欧美精品sm网站| 国产91精品久久久久久久网曝门 | 久久一二三国产| 九一久久久久久| 久久久国产午夜精品| 国产寡妇亲子伦一区二区| 国产欧美一区二区精品性| 成人精品免费看| 日韩美女视频一区| 色狠狠色狠狠综合| 亚洲va天堂va国产va久| 欧美乱妇一区二区三区不卡视频| 日产国产欧美视频一区精品| 日韩免费视频一区二区| 国产精品亚洲人在线观看| 亚洲国产精品激情在线观看| 99久久精品国产毛片| 亚洲猫色日本管| 欧美福利视频导航| 久久99国产精品久久| 国产欧美精品一区二区三区四区| 99久久久久久| 午夜精品一区在线观看| 日韩精品综合一本久道在线视频| 国产麻豆成人传媒免费观看| 中文字幕不卡在线播放| 欧美少妇一区二区| 久久国产精品色婷婷| 国产精品二区一区二区aⅴ污介绍| 91成人在线精品| 麻豆91免费观看| 国产精品美女一区二区| 欧美日韩在线直播| 国产一区在线看| 亚洲激情中文1区| 精品剧情v国产在线观看在线| 99re8在线精品视频免费播放| 亚洲福利电影网| 国产日产精品一区| 欧美色视频在线| 豆国产96在线|亚洲| 亚洲香肠在线观看| 久久精品一二三| 欧美午夜精品一区二区蜜桃| 国产精品自拍av| 天天影视网天天综合色在线播放| 精品久久久久久久久久久院品网 | 日韩vs国产vs欧美| 国产精品久久久久久久第一福利| 色偷偷久久人人79超碰人人澡| 美女视频免费一区| 亚洲日本一区二区三区| 亚洲精品一区二区三区蜜桃下载| 91麻豆国产精品久久| 国产一区视频网站| 亚洲丶国产丶欧美一区二区三区| 久久久精品中文字幕麻豆发布| 欧美日韩一区二区在线视频| 岛国一区二区在线观看| 日本亚洲欧美天堂免费| 国产精品不卡在线| 26uuu久久天堂性欧美| 欧美性一区二区| 成人黄色电影在线| 精品影院一区二区久久久|