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

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

?? chartingbase.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
minValue=Math.min(minValue,s[i].getMinimumValue());return minValue;};_p.getMaximum=function(){if(this._maximum!=null)return this._maximum;if(this._graph._getPercentageStack())
return 1;return this._getDefaultProperties().max;};_p.getMinimum=function(){if(this._minimum!=null)return this._minimum;return this._getDefaultProperties().min;};_p.getMajorTickInterval=function(){if(this._majorTickInterval!=null)return this._majorTickInterval;return this._getDefaultProperties().major;};_p.getMinorTickInterval=function(){if(this._minorTickInterval!=null)return this._minorTickInterval;return this._getDefaultProperties().minor;};_p.dispose=function(){if(this._disposed)return;BiComponent.prototype.dispose.call(this);this._graph=null;for(var i=0;i<this._labels.length;i++)
this._labels[i]=null;this._labels=null;this._clearCache();this._majorTicks=null;this._minorTicks=null;this._axisLine=null;};_p._getDefaultProperties=function(){if(this._cachedDefaultProperties!=null)return this._cachedDefaultProperties;var max=this._maximum!=null?this._maximum:this.getMaximumValue();var min=this._minimum!=null?this._minimum:Math.min(0,this.getMinimumValue());var diff=max-min;var zeros=Math.floor(Math.log(diff)/Math.log(10));var major;if(this._majorTickInterval!=null){major=this._majorTickInterval;}
else{major=Math.pow(10,zeros);var x=diff/major;if(x<2)
major=major/5;else if(x<5)
major=major/2;}
var minor=this._minorTickInterval!=null?this._minorTickInterval:major/5;var newMax=Math.ceil((max+major/2)/major)*major;var newMin;if(min==0)
newMin=0;else newMin=Math.floor((min-major/2)/major)*major;return this._cachedDefaultProperties={max:newMax,min:newMin,major:major,minor:minor};};_p.setFontSize=function(n){};_p.setVisible=function(b){};_p.getVisible=function()
{return this._desiredVisible;};_p._updateVisible=function()
{this.setVisible(this._desiredVisible);};_p.fromXmlElement=function(oNode){var s=oNode.getAttribute("Visible");if(s)this.setVisible(s!="false");s=oNode.getAttribute("ShowMajorTicks");if(s)this.setShowMajorTicks(s!="false");s=oNode.getAttribute("ShowMinorTicks");if(s)this.setShowMinorTicks(s=="true");s=oNode.getAttribute("ShowLabels");if(s)this.setShowLabels(s!="false");s=oNode.getAttribute("MajorTickInterval");if(s)this.setMajorTickInterval(Number(s));s=oNode.getAttribute("MinorTickInterval");if(s)this.setMinorTickInterval(Number(s));s=oNode.getAttribute("Maximum");if(s)this.setMaximum(Number(s));s=oNode.getAttribute("Minimum");if(s)this.setMinimum(Number(s));};_p.toXmlElement=function(oDoc){var el=oDoc.createElement("ValueAxis");el.setAttribute("Visible",String(this._desiredVisible));if(this._showMajorTicks!=null)
el.setAttribute("ShowMajorTicks",String(this._showMajorTicks));if(this._showMinorTicks!=null)
el.setAttribute("ShowMinorTicks",String(this._showMinorTicks));if(this._showLabels!=null)
el.setAttribute("ShowLabels",String(this._showLabels));if(this._majorTickInterval!=null)
el.setAttribute("MajorTickInterval",String(this._majorTickInterval));if(this._minorTickInterval!=null)
el.setAttribute("MinorTickInterval",String(this._minorTickInterval));if(this._maximum!=null)
el.setAttribute("Maximum",String(this._majorTickInterval));if(this._minimum!=null)
el.setAttribute("Minimum",String(this._minorTickInterval));return el;};_p._clearCache=function(){this._cachedDefaultProperties=null;};function BiChartCategoryAxisBase(oGraph)
{if(!oGraph)
return;BiComponent.call(this);this._graph=oGraph;this._labels=[];};var _p=BiChartCategoryAxisBase.prototype=new BiComponent;_p._className="BiChartCategoryAxisBase";_p._axisBetweenCategories=true;_p._desiredVisible=true;_p._majorTickInterval=null;_p._minorTickInterval=null;_p._showMajorTicks=true;_p._showMinorTicks=true;_p._showLabels=true;_p._fontSize=11;BiChartCategoryAxisBase.prototype.setMajorTickInterval=function(v){this._majorTickInterval=v;};BiChartCategoryAxisBase.prototype.setMinorTickInterval=function(v){this._minorTickInterval=v;};BiChartCategoryAxisBase.prototype.getShowMajorTicks=function(){return this._showMajorTicks;};BiChartCategoryAxisBase.prototype.setShowMajorTicks=function(v){this._showMajorTicks=v;};BiChartCategoryAxisBase.prototype.getShowMinorTicks=function(){return this._showMinorTicks;};BiChartCategoryAxisBase.prototype.setShowMinorTicks=function(v){this._showMinorTicks=v;};BiChartCategoryAxisBase.prototype.getShowLabels=function(){return this._showLabels;};BiChartCategoryAxisBase.prototype.setShowLabels=function(v){this._showLabels=v;};BiChartCategoryAxisBase.prototype.getAxisBetweenCategories=function(){return this._axisBetweenCategories;};BiChartCategoryAxisBase.prototype.setAxisBetweenCategories=function(v){this._axisBetweenCategories=v;};BiChartCategoryAxisBase.prototype.getFontSize=function(){return this._fontSize;};_p.getMaximum=function(){var l=this._graph.getCategories().length;if(this._axisBetweenCategories)
return l;return l-1;};_p.getMinimum=function(){return 0;};_p.getMajorTickInterval=function(){if(this._majorTickInterval!=null)return this._majorTickInterval;return 1;};_p.getMinorTickInterval=function(){if(this._minorTickInterval!=null)return this._minorTickInterval;return this.getMajorTickInterval()/2;};_p.dispose=function(){if(this._disposed)return;BiComponent.prototype.dispose.call(this);this._graph=null;for(var i=0;i<this._labels.length;i++)
this._labels[i]=null;this._labels=null;this._majorTicks=null;this._minorTicks=null;this._axisLine=null;};_p.setFontSize=function(n){};_p.setVisible=function(b){};_p.getVisible=function()
{return this._desiredVisible;};_p._updateVisible=function()
{this.setVisible(this._desiredVisible);};_p.fromXmlElement=function(oNode){var s=oNode.getAttribute("Visible");if(s)this.setVisible(s!="false");s=oNode.getAttribute("ShowMajorTicks");if(s)this.setShowMajorTicks(s!="false");s=oNode.getAttribute("ShowMinorTicks");if(s)this.setShowMinorTicks(s=="true");s=oNode.getAttribute("ShowLabels");if(s)this.setShowLabels(s!="false");s=oNode.getAttribute("MajorTickInterval");if(s)this.setMajorTickInterval(Number(s));s=oNode.getAttribute("MinorTickInterval");if(s)this.setMinorTickInterval(Number(s));s=oNode.getAttribute("AxisBetweenCategories");if(s)this.setAxisBetweenCategories(s!="false");};_p.toXmlElement=function(oDoc){var el=oDoc.createElement("CategoryAxis");el.setAttribute("Visible",String(this._desiredVisible));if(this._showMajorTicks!=null)
el.setAttribute("ShowMajorTicks",String(this._showMajorTicks));if(this._showMinorTicks!=null)
el.setAttribute("ShowMinorTicks",String(this._showMinorTicks));if(this._majorTickInterval!=null)
el.setAttribute("MajorTickInterval",String(this._majorTickInterval));if(this._minorTickInterval!=null)
el.setAttribute("MinorTickInterval",String(this._minorTickInterval));return el;};function BiChartAreaBase(oGraph)
{if(!oGraph)
return;BiComponent.call(this);this._graph=oGraph;};var _p=BiChartAreaBase.prototype=new BiComponent;_p._className="BiChartAreaBase";_p._fillColor=null;_p._strokeColor=null;_p._updateCoordSize=function(sCoordSize,sCoordOrigin){};_p.setFillColor=function(s){};_p.getFillColor=function(){return this._fillColor;};_p.hasFillColor=function(){return this._fillColor!=null;};_p.hasFillColor2=function(){return this._fillColor2!=null;};_p.getFillColor2=function(){return this._fillColor2;};_p.setFillColor2=function(s){this._fillColor2=s;};_p.hasFillOpacity=function(){return this._fillOpacity!=null;};_p.getFillOpacity=function(){return this._fillOpacity;};_p.setFillOpacity=function(n){this._fillOpacity=n;};_p.hasFillType=function(){return this._fillType!=null;};_p.getFillType=function(){return this._fillType;};_p.setFillType=function(s){this._fillType=s;};_p.hasFillAngle=function(){return this._fillAngle!=null;};_p.getFillAngle=function(){return this._fillAngle;};_p.setFillAngle=function(n){this._fillAngle=n;};_p.setStrokeColor=function(s){};_p.getStrokeColor=function(){return this._strokeColor;};_p.hasStrokeColor=function(){return this._strokeColor!=null;};_p.hasStrokeOpacity=function(){return this._strokeOpacity!=null;};_p.getStrokeOpacity=function(){return this._strokeOpacity;};_p.setStrokeOpacity=function(n){this._strokeOpacity=n;};_p.fromXmlElement=function(oNode){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);};_p.toXmlElement=function(oDoc){if(!this.hasFillColor()&&!this.hasStrokeColor()&&!this.hasFillColor2()&&!this.hasFillType()&&!this.hasFillAngle())
return oDoc.createDocumentFragment();var ca=oDoc.createElement("ChartArea");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());ca.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());ca.appendChild(el);}
return ca;};_p.dispose=function(){if(this._disposed)return;BiComponent.prototype.dispose.call(this);this._graph=null;this._outlineRect=null
this._backgroundRect=null;this._fillEl=null;};function BiChartGridLinesBase(oGraph){BiComponent.call(this);this._graph=oGraph;};var _p=BiChartGridLinesBase.prototype=new BiComponent;_p._className="BiChartGridLinesBase";BiChartGridLinesBase.prototype.getGraph=function(){return this._graph;};_p._desiredVisible=true;_p._showMinorCategory=null;_p._showMinorValue=null;_p._showMajorCategory=null;_p._showMajorValue=null;_p._minorCategoryStrokeColor=null;_p._majorCategoryStrokeColor=null;_p._minorValueStrokeColor=null;_p._majorValueStrokeColor=null;_p.setShowMinorValue=function(b)
{if(this._showMinorValue!=b){this._showMinorValue=b;this._updateMinorValue();}};_p.setShowMajorValue=function(b)
{if(this._showMajorValue!=b){this._showMajorValue=b;this._updateMajorValue();}};_p.setShowMinorCategory=function(b)
{if(this._showMinorCategory!=b){this._showMinorCategory=b;this._updateMinorCategory();}};_p.setShowMajorCategory=function(b)
{if(this._showMajorCategory!=b){this._showMajorCategory=b;this._updateMajorCategory();}};_p.getShowMinorValue=function(){return this._showMinorValue!=null?this._showMinorValue:false;};_p.getShowMajorValue=function(){return this._showMajorValue!=null?this._showMajorValue:true;};_p.getShowMinorCategory=function(){return this._showMinorCategory!=null?this._showMinorCategory:false;};_p.getShowMajorCategory=function(){return this._showMajorCategory!=null?this._showMajorCategory:true;};_p.hasShowMinorValue=function(){return this._showMinorValue!=null;};_p.hasShowMajorValue=function(){return this._showMajorValue!=null;};_p.hasShowMinorCategory=function(){return this._showMinorCategory!=null;};_p.hasShowMajorCategory=function(){return this._showMajorCategory!=null;};_p.getMinorCategoryStrokeColor=function(){return this._minorCategoryStrokeColor||"#ddd";};_p.getMajorCategoryStrokeColor=function(){return this._majorCategoryStrokeColor||"#333";};_p.getMinorValueStrokeColor=function(){return this._minorValueStrokeColor||"#ddd";};_p.getMajorValueStrokeColor=function(){return this._majorValueStrokeColor||"#333";};_p.hasMinorCategoryStrokeColor=function(){return this._minorCategoryStrokeColor!=null;};_p.hasMajorCategoryStrokeColor=function(){return this._majorCategoryStrokeColor!=null;};_p.hasMinorValueStrokeColor=function(){return this._minorValueStrokeColor!=null;};_p.hasMajorValueStrokeColor=function(){return this._majorValueStrokeColor!=null;};_p.setMinorCategoryStrokeColor=function(s){};_p.setMajorCategoryStrokeColor=function(s){};_p.setMinorValueStrokeColor=function(s){};_p.setMajorValueStrokeColor=function(s){};_p.fromXmlElement=function(oElement){var n=oElement.selectSingleNode("MajorValue/@Visible");if(n)this.setShowMajorValue(n.text=="true");n=oElement.selectSingleNode("MinorValue/@Visible");if(n)this.setShowMinorValue(n.text=="true");n=oElement.selectSingleNode("MajorCategory/@Visible");if(n)this.setShowMajorCategory(n.text=="true");n=oElement.selectSingleNode("MinorCategory/@Visible");if(n)this.setShowMinorCategory(n.text=="true");n=oElement.selectSingleNode("MinorCategory/Stroke/@Color");if(n)this.setMinorCategoryStrokeColor(n.text);n=oElement.selectSingleNode("MajorCategory/Stroke/@Color");if(n)this.setMajorCategoryStrokeColor(n.text);n=oElement.selectSingleNode("MinorValue/Stroke/@Color");if(n)this.setMinorValueStrokeColor(n.text);n=oElement.selectSingleNode("MajorValue/Stroke/@Color");if(n)this.setMajorValueStrokeColor(n.text);};_p.toXmlElement=function(oDoc){var gd=oDoc.createElement("GridLines");var n;if(this.hasShowMajorValue()||this.hasMajorValueStrokeColor()){n=oDoc.createElement("MajorValue");if(this.hasShowMajorValue())
n.setAttribute("Visible",String(this.getShowMajorValue()));if(this.hasMajorValueStrokeColor()){el=oDoc.createElement("Stroke");el.setAttribute("Color",this.getMajorValueStrokeColor());n.appendChild(el);}
gd.appendChild(n);}
if(this.hasShowMinorValue()||this.hasMinorValueStrokeColor()){n=oDoc.createElement("MinorValue");if(this.hasShowMinorValue())
n.setAttribute("Visible",String(this.getShowM

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久看| 国产三区在线成人av| 水蜜桃久久夜色精品一区的特点 | 日本成人超碰在线观看| 日韩视频永久免费| 国产成人av电影在线播放| 亚洲乱码国产乱码精品精的特点| 欧美日韩国产区一| 国产大陆亚洲精品国产| 亚洲女厕所小便bbb| 91精品国产综合久久久久久| 成人性生交大合| 三级欧美在线一区| 国产精品毛片久久久久久久| 欧美福利电影网| av激情成人网| 久久国产精品免费| 一区二区久久久久| 国产日韩欧美一区二区三区综合| 色999日韩国产欧美一区二区| 精品一区免费av| 亚洲亚洲精品在线观看| 国产欧美日韩在线| 3d成人动漫网站| 蜜臀av亚洲一区中文字幕| 久久精品欧美日韩| 欧美日韩1234| hitomi一区二区三区精品| 麻豆国产精品777777在线| 一区二区三区精品在线| 国产网红主播福利一区二区| 4438x成人网最大色成网站| 成人av午夜影院| 日本欧美在线观看| 亚洲夂夂婷婷色拍ww47| 亚洲国产高清在线观看视频| 欧美成人综合网站| 在线成人小视频| 在线视频国产一区| 99国产精品一区| 福利91精品一区二区三区| 玖玖九九国产精品| 日本中文字幕不卡| 亚洲一区视频在线观看视频| 亚洲婷婷综合色高清在线| 久久久噜噜噜久久人人看| 日韩欧美一二区| 欧美日韩日日夜夜| 欧美人动与zoxxxx乱| 欧美主播一区二区三区美女| 99久久免费国产| 成人免费视频网站在线观看| 国产精品99久久不卡二区| 久久精品国产99久久6| 午夜av电影一区| 视频一区在线播放| 五月天视频一区| 亚洲影院理伦片| 亚洲伊人色欲综合网| 一区二区三区四区在线免费观看| 国产精品久久久久影院老司| 亚洲国产成人自拍| 欧美激情在线观看视频免费| 欧美国产综合色视频| 中文字幕av不卡| 国产精品久久久久影院色老大| 中文字幕乱码日本亚洲一区二区| 国产欧美一区二区精品秋霞影院| 久久夜色精品一区| 日本一区二区三区久久久久久久久不| 精品1区2区在线观看| 精品999在线播放| 欧美激情一区二区三区全黄| 亚洲欧美影音先锋| 一区二区三区四区在线免费观看| 亚洲国产一区二区三区 | 中文字幕在线观看一区二区| 国产精品进线69影院| 亚洲愉拍自拍另类高清精品| 亚洲成av人片在线| 日韩精品福利网| 国内成人自拍视频| 成人h精品动漫一区二区三区| 99热精品一区二区| 欧美私模裸体表演在线观看| 在线不卡免费av| 亚洲精品在线一区二区| 中文字幕一区二区日韩精品绯色| 亚洲美女免费视频| 日本成人中文字幕在线视频| 国内精品伊人久久久久av影院 | 亚洲精品一区二区精华| 久久精品视频免费| 亚洲欧美日韩中文字幕一区二区三区 | 91福利国产成人精品照片| 欧美日韩国产天堂| 久久亚洲二区三区| 亚洲素人一区二区| 天天综合色天天| 国产成人av电影在线播放| 欧美专区日韩专区| 26uuu亚洲综合色| 亚洲欧美一区二区三区孕妇| 日本不卡免费在线视频| 国产成人精品亚洲午夜麻豆| 欧美日韩一区二区三区视频| 精品99999| 一级特黄大欧美久久久| 国产在线精品一区二区夜色| 91免费看`日韩一区二区| 精品久久久久久久一区二区蜜臀| 亚洲精品你懂的| 精彩视频一区二区三区| 欧洲精品在线观看| 久久久精品中文字幕麻豆发布| 亚洲国产精品久久久男人的天堂 | 风间由美一区二区av101| 欧美日韩免费一区二区三区视频| 久久蜜桃av一区二区天堂| 亚洲综合色噜噜狠狠| 国产成人高清视频| 日韩一区二区免费电影| 亚洲三级视频在线观看| 国产一区二区三区综合| 欧美日韩亚洲综合一区| 中文在线一区二区| 亚洲女与黑人做爰| 欧美日韩一区二区电影| 欧美大黄免费观看| 国产精品久久久一区麻豆最新章节| 亚洲成av人影院| 91福利小视频| 中文字幕av一区 二区| 蓝色福利精品导航| 欧美精品 日韩| 亚洲一区二区美女| 99久久99精品久久久久久 | 日韩午夜激情免费电影| 亚洲视频一二区| 国产成a人无v码亚洲福利| 欧美本精品男人aⅴ天堂| 丝袜美腿亚洲一区| 欧美日韩一二区| 亚洲最色的网站| 91蝌蚪porny成人天涯| 国产精品麻豆视频| 国产成人自拍网| 久久久欧美精品sm网站| 国产一区二三区好的| 日韩欧美国产1| 日本欧美大码aⅴ在线播放| 91精品啪在线观看国产60岁| 亚洲午夜羞羞片| 欧美伊人久久久久久久久影院 | 亚洲va韩国va欧美va精品| eeuss影院一区二区三区| 中文字幕av一区二区三区高| 91精品国产色综合久久不卡蜜臀| 成人av网址在线观看| 国产精品白丝jk黑袜喷水| 国产精品色眯眯| 狠狠色丁香久久婷婷综合_中| 成人黄色av电影| 国产精品久久福利| 欧美精品丝袜久久久中文字幕| 久久超级碰视频| 亚洲国产精品传媒在线观看| 欧美亚洲国产怡红院影院| 麻豆国产精品777777在线| 欧美丰满美乳xxx高潮www| 99精品国产99久久久久久白柏| 91精品1区2区| 日韩色视频在线观看| 欧美一级久久久久久久大片| 精品毛片乱码1区2区3区| 亚洲精品乱码久久久久久 | 国产精品国产三级国产普通话三级| 在线看国产一区| 偷窥国产亚洲免费视频| 成人h精品动漫一区二区三区| 91 com成人网| 国产欧美一区二区精品性色超碰| 亚洲老司机在线| 国产美女精品人人做人人爽| 国产精品久久久久久久久久久免费看 | 国产精品1区2区3区在线观看| 亚洲精品国产精华液| 亚洲免费观看高清完整版在线观看 | 美女视频一区二区三区| 一区二区三区不卡视频在线观看 | 色8久久人人97超碰香蕉987| 欧美性猛片xxxx免费看久爱| **性色生活片久久毛片| 黄色日韩网站视频| 亚洲一本大道在线| 国产精品一区专区| 亚洲日本在线a| zzijzzij亚洲日本少妇熟睡| 亚洲综合免费观看高清在线观看| 日韩精品资源二区在线|