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

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

?? charting2.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 2 頁
字號:
/* * Bindows 1.10 * http://www.bindows.net/ * Copyright (c) 2003-2004 MB Technologies * * Bindows(tm) belongs to MB Technologies (Georgia, USA). All rights reserved. * You are not allowed to copy or modify this code. Commercial use requires * license. */function BiChartArea2(oGraph)
{BiChartAreaBase.call(this,oGraph);this._backgroundComponent=new BiComponent;this._backgroundComponent.setLocation(0,0);this.setLocation(30,30)
this.setRight(30);this.setBottom(30);this.add(this._backgroundComponent,null,true);};var _p=BiChartArea2.prototype=new BiChartAreaBase;_p._className="BiChartArea2";_p.setFillColor=function(s){this._fillColor=s;this._backgroundComponent.setBackColor(s);};_p.setFillOpacity=function(n)
{this._fillOpacity=n;this._backgroundComponent.setOpacity(n);};_p.setStrokeColor=function(s){this._strokeColor=s;if(!this._strokeBorder)
this._strokeBorder=new BiBorder(1,"solid");this._strokeBorder.setWidth(s=="transparent"?0:1);this._strokeBorder.setColor(s);this._backgroundComponent.setBorder(this._strokeBorder);};BiChartArea2.fromXmlElement=function(oGraph,oNode){var ca=new BiChartArea2(oGraph);ca.fromXmlElement(oNode);return ca;};_p.layoutComponent=function()
{this._graph._resetScaleFactor();BiComponent.prototype.layoutComponent.call(this);this._backgroundComponent.setSize(this.getWidth(),this.getHeight());};_p.layoutComponentX=function()
{this._graph._resetScaleFactor();BiComponent.prototype.layoutComponentX.call(this);this._backgroundComponent.setWidth(this.getWidth());};_p.layoutComponentY=function()
{this._graph._resetScaleFactor();BiComponent.prototype.layoutComponentY.call(this);this._backgroundComponent.setHeight(this.getHeight());};function BiAbstractChart2(oGraph,oSeries)
{if(!oGraph)
return;BiAbstractChartBase.call(this,oGraph,oSeries);this.setLocation(0,0);this.setRight(0);this.setBottom(0);this.setStyleProperty("visibility","hidden");};var _p=BiAbstractChart2.prototype=new BiAbstractChartBase;_p._className="BiAbstractChart2";function BiAbstractChartSection2(oChart,oCategory)
{if(!oChart)
return;BiAbstractChartSectionBase.call(this,oChart,oCategory);this.setFillColor(this.getFillColor());this.setStrokeColor(this.getStrokeColor());this.setFillOpacity(this.getFillOpacity());this.setStyleProperty("visibility","visible");};var _p=BiAbstractChartSection2.prototype=new BiAbstractChartSectionBase;_p._className="BiAbstractChartSection2";_p._defaultStrokeBorder=new BiBorder(1,"solid","black");_p.setStrokeColor=function(s)
{this._strokeColor=s;if(!this._strokeBorder)
this._strokeBorder=new BiBorder(1,"solid");this._strokeBorder.setWidth(s=="transparent"?0:1);this._strokeBorder.setColor(s);this.setBorder(this._strokeBorder);};_p.setFillColor=function(s)
{this.setBackColor(s);};_p.setFillOpacity=function(n)
{this.setOpacity(n);};function BiChartCategoryAxis2(oGraph)
{BiChartCategoryAxisBase.call(this,oGraph);this.setStyleProperty("visibility","hidden");this.setLocation(0,0);this.setRight(0);this.setBottom(0);this._axisLine=new BiComponent;this._axisLine.setBackColor("black");this._axisLine.setStyleProperty("visibility","visible");this.add(this._axisLine);};var _p=BiChartCategoryAxis2.prototype=new BiChartCategoryAxisBase;_p._className="BiChartCategoryAxis2";_p._updateAxisLine=function()
{if(!this.getCreated()||!this._desiredVisible)
return;var onX=this._graph._getCategoryOnXAxis();var ca=this._graph.getChartArea();var sf=this._graph._getScaleFactor();var csf=this._graph._getCatScaleFactor();if(!onX)
{var minValue=this._graph.getValueAxis().getMinimum();this._axisLine.setBounds(ca.getLeft()-minValue*sf,ca.getTop(),1,ca.getHeight());}
else {var maxVal=this._graph.getValueAxis().getMaximum();this._axisLine.setBounds(ca.getLeft(),ca.getTop()+maxVal*sf-1,ca.getWidth(),1);}};_p._updateMajorTicks=function(){};_p._updateMinorTicks=function(){};_p._createLabels=function()
{if(!this.getCreated()||!this._desiredVisible)
return;var l;for(var i=this._labels.length-1;i>=0;i--)
{l=this._labels[i];this.remove(l);l.dispose();}
this._labels=[];if(this._showLabels)
{var major=this._graph._categoryAxis.getMajorTickInterval();var catMax=this._graph._categoryAxis.getMaximum();var x=this._axisBetweenCategories?0.5:0;var cats=this._graph.getCategories();var l;var onX=this._graph._getCategoryOnXAxis();while(x<=catMax)
{l=new BiLabel(cats[Math.floor(x)].getTitle());l.setStyleProperty("visibility","visible");l.setWidth(100);l._chartValue=x;l.setStyleProperty("fontSize",this._fontSize+"px");if(onX)
{l.setAlign("center");}
else{l.setAlign("right");}
this.add(l);this._labels.push(l);x+=major;}}};_p._layoutLabels=function()
{if(this.getCreated()&&this._showLabels&&this._desiredVisible)
{var l,v;var caTop=this._graph.getChartArea().getTop();var caHeight=this._graph.getChartArea().getHeight();var caLeft=this._graph.getChartArea().getLeft();var sf=this._graph._getScaleFactor();var csf=this._graph._getCatScaleFactor();var onX=this._graph._getCategoryOnXAxis();var maxVal=this._graph.getValueAxis().getMaximum();var minVal=this._graph.getValueAxis().getMinimum();for(var i=0;i<this._labels.length;i++)
{l=this._labels[i];v=l._chartValue;if(onX)
{l.setLocation(caLeft+v*csf-50,caTop+maxVal*sf+3);}
else {l.setLocation(caLeft-minVal*sf-103,caTop+caHeight-v*csf-l.getHeight()/2);}}}};_p._updateLabels=function()
{this._createLabels();this._layoutLabels();};_p.setFontSize=function(n)
{this._fontSize=n;for(var i=0;i<this._labels.length;i++)
this._labels[i].setStyleProperty("fontSize",n+"px");this._layoutLabels();};_p.setVisible=function(b)
{this._desiredVisible=b;var s=b&&this._graph._getSupportsCategoryAxis()?"visible":"hidden";this._axisLine.setStyleProperty("visibility",s);for(var i=0;i<this._labels.length;i++)
this._labels[i].setStyleProperty("visibility",s);};BiChartCategoryAxis2.fromXmlElement=function(oGraph,oNode){var ax=new BiChartCategoryAxis2(oGraph);ax.fromXmlElement(oNode);return ax;};_p.layoutAllChildren=function()
{BiComponent.prototype.layoutAllChildren.call(this);this._layoutLabels();this._updateAxisLine();};_p.layoutAllChildrenX=function()
{BiComponent.prototype.layoutAllChildrenX.call(this);this._layoutLabels();this._updateAxisLine();};_p.layoutAllChildrenY=function()
{BiComponent.prototype.layoutAllChildrenY.call(this);this._layoutLabels();this._updateAxisLine();};function BiChartValueAxis2(oGraph)
{BiChartValueAxisBase.call(this,oGraph);this.setStyleProperty("visibility","hidden");this.setLocation(0,0);this.setRight(0);this.setBottom(0);this._axisLine=new BiComponent;this._axisLine.setBackColor("black");this._axisLine.setStyleProperty("visibility","visible");this.add(this._axisLine);};_p=BiChartValueAxis2.prototype=new BiChartValueAxisBase;_p._className="BiChartValueAxis2";_p._showMajorTicks=false;_p._showMinorTicks=false;_p._updateAxisLine=function()
{if(!this.getCreated()||!this._desiredVisible)
return;var onX=this._graph._getCategoryOnXAxis();var ca=this._graph.getChartArea();if(onX)
{this._axisLine.setBounds(ca.getLeft(),ca.getTop(),1,ca.getHeight());}
else {this._axisLine.setBounds(ca.getLeft(),ca.getTop()+ca.getHeight()-1,ca.getWidth(),1);}};_p._updateMajorTicks=function(){};_p._updateMinorTicks=function(){};_p._createLabels=function()
{if(!this.getCreated()||!this._desiredVisible)
return;var l;for(var i=this._labels.length-1;i>=0;i--)
{l=this._labels[i];this.remove(l);l.dispose();}
this._labels=[];if(this._showLabels)
{var min=this.getMinimum();var max=this.getMaximum();var major=this.getMajorTickInterval();var y=min;if(y/major%1!=0)
y=y+(min<0?0:major)-y%major;var l,ys;var onX=this._graph._getCategoryOnXAxis();var percentage=this._graph._getPercentageStack();while(y<=max)
{if(percentage)
ys=Math.round(y*100)+"%";else ys=String(y);l=new BiLabel(ys);l.setStyleProperty("visibility","visible");l.setWidth(100);l._chartValue=y;l.setStyleProperty("fontSize",this._fontSize+"px");if(onX){l.setAlign("right");}
else{l.setAlign("center");}
this.add(l);this._labels.push(l);y+=major;y=Math.round(y/major)*major;}}};_p._layoutLabels=function()
{if(this.getCreated()&&this._showLabels&&this._desiredVisible)
{var onX=this._graph._getCategoryOnXAxis();var minVal=this.getMinimum();var maxVal=this.getMaximum();var sf=this._graph._getScaleFactor();var l,v;var caTop=this._graph.getChartArea().getTop();var caHeight=this._graph.getChartArea().getHeight();var caLeft=this._graph.getChartArea().getLeft();for(var i=0;i<this._labels.length;i++)
{l=this._labels[i];v=l._chartValue;if(onX)
{l.setLocation(caLeft-100-3,caTop+(maxVal-v)*sf-l.getHeight()/2);}
else {l.setLocation(caLeft+(v-minVal)*sf-50,caTop+caHeight+3);}}}};_p._updateLabels=function()
{this._createLabels();this._layoutLabels();};_p.setFontSize=function(n)
{this._fontSize=n;for(var i=0;i<this._labels.length;i++)
this._labels[i].setStyleProperty("fontSize",n+"px");this._layoutLabels();};_p.setVisible=function(b)
{this._desiredVisible=b;var s=b&&this._graph._getSupportsValueAxis()?"visible":"hidden";this._axisLine.setStyleProperty("visibility",s);for(var i=0;i<this._labels.length;i++)
this._labels[i].setStyleProperty("visibility",s);};BiChartValueAxis2.fromXmlElement=function(oGraph,oNode){var ax=new BiChartValueAxis2(oGraph);ax.fromXmlElement(oNode);return ax;};_p.layoutAllChildren=function()
{BiChartValueAxisBase.prototype.layoutAllChildren.call(this);this._layoutLabels();this._updateAxisLine();};_p.layoutAllChildrenX=function()
{BiChartValueAxisBase.prototype.layoutAllChildrenX.call(this);this._layoutLabels();this._updateAxisLine();};_p.layoutAllChildrenY=function()
{BiChartValueAxisBase.prototype.layoutAllChildrenY.call(this);this._layoutLabels();this._updateAxisLine();};function BiColumnChart2(oGraph,oSeries)
{if(!oGraph)
return;BiAbstractChart2.call(this,oGraph,oSeries);this._rectsByCat={};};_p=BiColumnChart2.prototype=new BiAbstractChart2;_p._className="BiColumnChart2";_p._isBar=false;_p._isStacked=false;_p._isPercentage=false;_p._barSpacing=1;_p.getComponentByCategoryId=function(sCatId){return this._rectsByCat[sCatId];};_p._updateChart=function()
{var cs=this._children;var c;for(var i=cs.length-1;i>=0;i--)
{c=cs[i];this.remove(c);c.dispose();}
var vs=this._series.getValues();var l=vs.length;var cats=this._graph.getCategories();var id;var rect;for(var i=0;i<l;i++)
{if(vs[i]!=null)
{id=cats[i].getId();rect=new BiColumnChartSection2(this,cats[i]);this._rectsByCat[id]=rect;this.add(rect);}}};_p.layoutChild=function(c)
{if(!c._layoutSuspendCount)
c._doLayout();BiAbstractChart2.prototype.layoutChild.call(this,c);};_p.layoutChildX=function(c)
{if(!c._layoutSuspendCount)
c._doLayout();BiAbstractChart2.prototype.layoutChildX.call(this,c);};_p.layoutChildY=function(c)
{if(!c._layoutSuspendCount)
c._doLayout();BiAbstractChart2.prototype.layoutChildY.call(this,c);};_p.update=function(){this._updateChart();};_p._updateValues=function(){var cats=this._graph.getCategories();for(var i=0;i<cats.length;i++){this._updateValueByCategoryId(cats[i].getId());}};_p._updateValueByCategoryId=function(sId){this._updateRectByCategoryId(sId);if(this._isStacked){var charts=this._graph.getCharts();var found=this._graph._getPercentageStack();for(var i=0;i<charts.length;i++){if(!found&&charts[i]==this){found=this;continue;}
if(found){charts[i]._updateRectByCategoryId(sId);}}}};_p._updateRectByCategoryId=function(sId){var rect=this._rectsByCat[sId];if(!rect)return;rect._doLayout();};_p._getRectHeight=function(sCategoryId){return Number(this._series.getValueByCategoryId(sCategoryId));};_p._getRectTop=function(sCategoryId){return 0;};_p.dispose=function(){if(this._disposed)return;BiAbstractChart2.prototype.dispose.call(this);for(var hc in this._rectsByCat)
delete this._rectsByCat[hc];this._rectsByCat=null;};function BiBarChart2(oGraph,oSeries){BiColumnChart2.call(this,oGraph,oSeries);};_p=BiBarChart2.prototype=new BiColumnChart2;_p._className="BiBarChart2";_p._isBar=true;function BiStackedColumnChart2(oGraph,oSeries){BiColumnChart2.call(this,oGraph,oSeries);};_p=BiStackedColumnChart2.prototype=new BiColumnChart2;_p._className="BiStackedColumnChart2";_p._isBar=false;_p._isStacked=true;_p._getRectHeight=function(sCategoryId){return Math.abs(this._series.getValueByCategoryId(sCategoryId));};_p._getRectTop=function(sCategoryId){var charts=this._graph.getCharts();var sum=0;for(var i=0;i<charts.length;i++){if(charts[i]==this)
return sum;sum+=Math.abs(charts[i]._series.getValueByCategoryId(sCategoryId));}
return sum;};function BiStackedBarChart2(oGraph,oSeries){BiStackedColumnChart2.call(this,oGraph,oSeries);};_p=BiStackedBarChart2.prototype=new BiStackedColumnChart2;_p._className="BiStackedBarChart2";_p._isBar=true;function BiPercentageStackedColumnChart2(oGraph,oSeries){BiColumnChart2.call(this,oGraph,oSeries);};_p=BiPercentageStackedColumnChart2.prototype=new BiColumnChart2;_p._className="BiPercentageStackedColumnChart2";_p._isBar=false;_p._isStacked=true;_p._isPercentage=true;_p._getRectHeight=function(sCategoryId){var charts=this._graph.getCharts();var sum=0;for(var i=0;i<charts.length;i++){sum+=Math.abs(charts[i]._series.getValueByCategoryId(sCategoryId));}
return Math.abs(this._series.getValueByCategoryId(sCategoryId))/sum;};_p._getRectTop=function(sCategoryId){var charts=this._graph.getCharts();var sum=0;var y;for(var i=0;i<charts.length;i++){if(charts[i]==this)
y=sum;sum+=Math.abs(charts[i]._series.getValueByCategoryId(sCategoryId));}
return y/sum;};function BiPercentageStackedBarChart2(oGraph,oSeries){BiPercentageStackedColumnChart2.call(this,oGraph,oSeries);};_p=BiPercentageStackedBarChart2.prototype=new BiPercentageStackedColumnChart2;_p._className="BiPercentageStackedBarChart2";_p._isBar=true;function BiColumnChartSection2(oChart,oCategory){BiAbstractChartSection2.call(this,oChart,oCategory);}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本大胆欧美人术艺术动态| 欧美在线免费视屏| 91国产免费观看| 2017欧美狠狠色| 日日夜夜免费精品视频| 国产成人欧美日韩在线电影| 欧美日韩国产综合一区二区三区 | 亚洲免费在线看| 精品一区中文字幕| 欧美日韩亚洲国产综合| 国产精品久久久久久久裸模| 国产一区二区精品在线观看| 91精品国产综合久久婷婷香蕉| 最新日韩av在线| 粉嫩一区二区三区在线看| 日韩你懂的在线观看| 婷婷丁香久久五月婷婷| 在线观看日韩av先锋影音电影院| 中文av一区二区| 国产精品1区2区| 久久精品一区八戒影视| 国产毛片精品视频| 日韩女优电影在线观看| 男女性色大片免费观看一区二区| 欧美日韩精品系列| 亚洲超碰精品一区二区| 欧美色精品在线视频| 亚洲综合免费观看高清完整版在线| 99精品久久只有精品| 中文字幕在线免费不卡| 91在线视频网址| 亚洲欧美日韩在线| 91传媒视频在线播放| 亚洲综合清纯丝袜自拍| 欧美视频精品在线| 日韩成人av影视| 日韩欧美一区二区三区在线| 美女被吸乳得到大胸91| 日韩欧美在线影院| 激情成人午夜视频| 欧美高清在线精品一区| 高清视频一区二区| 亚洲婷婷综合色高清在线| 色伊人久久综合中文字幕| 自拍偷拍亚洲欧美日韩| 在线亚洲免费视频| 美女视频黄a大片欧美| 欧美精品一区二区三区蜜臀| 国产精品影视天天线| 亚洲欧美综合色| 欧美色爱综合网| 精品一区二区三区久久久| 国产视频911| 在线看国产日韩| 日本不卡一区二区三区| 久久久国产精华| 99热精品国产| 日韩和欧美一区二区| 久久久av毛片精品| 91女厕偷拍女厕偷拍高清| 亚洲电影你懂得| 久久精品一区二区三区四区 | 国产一区福利在线| 中文字幕亚洲一区二区av在线| 91电影在线观看| 国产综合色产在线精品| 亚洲素人一区二区| 91麻豆精品国产91久久久久久久久| 久久成人久久爱| 一区二区三区在线高清| 欧美精品一区二区三区在线| 色先锋aa成人| 麻豆极品一区二区三区| 17c精品麻豆一区二区免费| 欧美视频在线播放| 国产福利不卡视频| 日韩国产欧美三级| 国产精品久久久一本精品| 欧美区一区二区三区| 成人午夜精品在线| 蜜桃精品视频在线| 一区二区免费视频| 国产目拍亚洲精品99久久精品| 欧美日高清视频| 99riav久久精品riav| 韩国女主播一区| 日本欧美肥老太交大片| 日韩一区欧美一区| 久久精品人人做人人爽人人| 91精品国产一区二区| 欧美亚洲另类激情小说| 99久久伊人久久99| 国产综合色视频| 裸体健美xxxx欧美裸体表演| 亚洲免费观看高清完整版在线观看 | 国产欧美日韩三区| 日韩欧美你懂的| 91精品国模一区二区三区| 在线观看免费成人| 91在线无精精品入口| 成人激情免费视频| 国产一区二区精品久久91| 美脚の诱脚舐め脚责91| 日韩电影在线一区二区三区| 一区二区高清视频在线观看| 中文字幕一区二区不卡| 中文字幕免费不卡在线| 国产人妖乱国产精品人妖| 欧美成人在线直播| 日韩视频国产视频| 欧美一级黄色录像| 欧美一区二区三区视频免费播放 | 久久精品人人做| 国产亚洲1区2区3区| 久久蜜臀中文字幕| 欧美国产欧美综合| 国产精品乱码人人做人人爱| 国产亚洲综合性久久久影院| 欧美激情中文字幕一区二区| 久久久精品欧美丰满| 中文字幕第一区二区| 国产精品成人免费在线| 亚洲欧美视频在线观看| 亚洲午夜在线电影| 午夜精品国产更新| 美国十次综合导航| 国内精品免费**视频| 成人激情开心网| 色综合久久久久| 欧美精品黑人性xxxx| 日韩写真欧美这视频| 精品动漫一区二区三区在线观看| 久久这里只精品最新地址| 国产精品理论在线观看| 亚洲资源在线观看| 日韩av一区二区在线影视| 国产一区二区三区最好精华液| 丰满放荡岳乱妇91ww| 91黄视频在线| 欧美一区二区三区四区视频| 国产婷婷一区二区| 亚洲另类一区二区| 日本亚洲最大的色成网站www| 韩国三级电影一区二区| fc2成人免费人成在线观看播放| 欧美亚洲国产一区二区三区va | 在线不卡免费欧美| 久久免费国产精品| 一区二区三区中文字幕电影 | 国产日韩欧美电影| 一区二区国产盗摄色噜噜| 奇米影视在线99精品| 成人国产免费视频| 欧美一区二区三区电影| 亚洲人吸女人奶水| 美女视频黄频大全不卡视频在线播放| 成人一区二区三区视频| 欧美一区二区三区小说| 中文字幕人成不卡一区| 老司机精品视频导航| 色国产综合视频| 久久老女人爱爱| 国产精品一区二区三区乱码| 欧美精品一区二区三区一线天视频| 欧美三级中文字| 亚洲第一精品在线| 欧美一级艳片视频免费观看| 久久成人麻豆午夜电影| 久久午夜色播影院免费高清 | 中文字幕一区二区三区不卡在线| 亚洲一区av在线| 丁香激情综合国产| 日韩欧美一区二区视频| 一区二区三区欧美久久| 国产成人亚洲精品青草天美| 欧美一二三区在线| 亚洲国产综合色| 91蜜桃在线免费视频| 欧美激情一区二区三区| 国产在线不卡视频| 日韩欧美视频在线| 日日摸夜夜添夜夜添国产精品| 国产成人99久久亚洲综合精品| 日韩欧美一级特黄在线播放| 亚洲第一在线综合网站| 在线日韩国产精品| 国产精品女主播av| 成人av资源下载| 久久综合一区二区| 国产一区二区美女诱惑| 精品美女在线播放| 日韩不卡手机在线v区| 欧美三区在线观看| 亚洲va天堂va国产va久| 欧美人狂配大交3d怪物一区| 亚洲成人av免费| 欧美一区中文字幕| 蜜臀a∨国产成人精品| 久久青草欧美一区二区三区| 国内精品免费**视频|