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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? chartingbase.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
/* * 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 BiGraphBase(){BiComponent.call(this);this._series=[];this._charts={};this._categories=[];this._seriesMap={};this._categoriesMap={};this._points={};this._presentationManager=new BiChartPresentationManager(this);this._chartPresentations={};this.setSize(300,200);this.setForeColor("black");this.addEventListener("click",this._onMouseEvent);this.addEventListener("mousedown",this._onMouseEvent);this.addEventListener("mouseup",this._onMouseEvent);this.addEventListener("mouseover",this._onMouseEvent);this.addEventListener("mouseout",this._onMouseEvent);this.addEventListener("mousemove",this._onMouseEvent);this.addEventListener("dblclick",this._onMouseEvent);this.addEventListener("contextmenu",this._onMouseEvent);this.addEventListener("mousewheel",this._onMouseEvent);};_p=BiGraphBase.prototype=new BiComponent;_p._className="BiGraphBase";_p._chartType="column"
_p._xAxis=null;_p._yAxis=null;_p._gridLines=null;_p._chartArea=null;_p._chartAreaLeft=100;_p._chartAreaTop=100;_p._chartAreaWidth=800;_p._chartAreaHeight=800;_p._autoScale=false;_p._scaleFactor=null;_p._catScaleFactor=null;BiGraphBase.prototype.getPresentationManager=function(){return this._presentationManager;};BiGraphBase.prototype.getChartArea=function(){return this._chartArea;};BiGraphBase.prototype.getValueAxis=function(){return this._valueAxis;};BiGraphBase.prototype.getCategoryAxis=function(){return this._categoryAxis;};BiGraphBase.prototype.getGridLines=function(){return this._gridLines;};BiGraphBase.prototype.getLegend=function(){return this._legend;};BiGraphBase.prototype.getAutoScale=function(){return this._autoScale;};_p.getGrid=function(){return this._gridComponent;};_p.setAutoScale=function(b)
{}
_p._scaleFont=function(){if(this._autoScale)
{this.setFontSize(Math.min(this.getClientWidth(),this.getClientHeight())/25);}};_p.setFontSize=function(n)
{this._valueAxis.setFontSize(n);this._categoryAxis.setFontSize(n);this._legend.setFontSize(n);};_p.getFontSize=function()
{var s1=this._valueAxis.getFontSize();var s2=this._categoryAxis.getFontSize();var s3=this._legend.getFontSize();if(s1==s2&&s2==s3)
return s1;return null;};_p.addSeries=function(oSeries){var id=oSeries.getId();this._series.push(oSeries);this._seriesMap[id]=oSeries;oSeries._index=this._series.length-1;this._chartPresentations[id]=new BiChartPresentation(this,oSeries);};_p.removeSeries=function(oSeries){this._series.remove(oSeries);delete this._seriesMap[oSeries.getId()];var chart=this.getChartForSeries(oSeries);this._removeChart(chart);oSeries._index=null;for(var i=0;i<this._series.length;i++)
this._series[i]._index=i;};_p.clearSeries=function(){for(var i=0;i<this._series.length;i++)
this._series[i]._index=null;this._series=[];this._seriesMap={};};_p.getSeriesById=function(sId){return this._seriesMap[sId];};BiGraphBase.prototype.getSeries=function(){return this._series;};_p.setSeries=function(aSeries){this.clearSeries();for(var i=0;i<aSeries.length;i++)
this.addSeries(aSeries[i]);};_p.addCategory=function(oCategory){this._categories.push(oCategory);this._categoriesMap[oCategory.getId()]=oCategory;oCategory._index=this._categories.length-1;};_p.removeCategory=function(oCategory){this._categories.remove(oCategory);delete this._categoriesMap[oCategory.getId()];for(var i=0;i<this._categories.length;i++)
this._categories[i]._index=i;};_p.clearCategories=function(){for(var i=0;i<this._categories.length;i++)
this._categories[i]._index=null;this._categories=[];this._categoriesMap={};};_p.getCategoryById=function(sId){return this._categoriesMap[sId];};BiGraphBase.prototype.getCategories=function(){return this._categories;};_p.setCategories=function(aCategories){this.clearCategories();for(var i=0;i<aCategories.length;i++)
this.addCategory(aCategories[i]);};_p.addPoint=function(oPoint){var sId=oPoint.getSeriesId();var cId=oPoint.getCategoryId();if(this._points[sId]==null)
this._points[sId]={};this._points[sId][cId]=oPoint;};_p.removePoint=function(oPoint){var sId=oPoint.getSeriesId();var cId=oPoint.getCategoryId();if(this._points[sId]==null)
return;delete this._points[sId][cId];};_p.clearPoints=function(){this._points={};};_p.getPointByIds=function(sSeriesId,sCategoryId){if(this._points[sSeriesId])
return this._points[sSeriesId][sCategoryId];return null;};_p.getPoints=function(){var res=[];for(var sId in this._points){for(var cId in this._points[sId])
res.push(this._points[sId][cId]);}
return res;};_p.setPoints=function(aPoints){this.clearPoints();for(var i=0;i<aPoints.length;i++)
this.addPoint(aPoints[i]);};_p.getComponentByIds=function(sSeriesId,sCategoryId){var c=this._charts[sSeriesId];if(!c)return null;return c.getComponentByCategoryId(sCategoryId);};_p.getChartPresentation=_p.getChartPresentationBySeriesId=function(sSeriesId){return this._chartPresentations[sSeriesId];};BiGraphBase.prototype.getChartType=function(){return this._chartType;};_p.setChartType=function(sType){if(this._chartType!=sType){var oldAxis=this._getCategoryOnXAxis();var oldStacked=this._getStackedChart();var oldPercentage=this._getPercentageStack();var oldType=this._chartType;this._chartType=sType;this._currentColorIndex=0;this._syncChartForSeries();}};_p.getCharts=function(){var res=[];for(var sId in this._charts)
res.push(this._charts[sId]);return res;};_p.getChartForSeries=function(oSeries){var id=oSeries.getId();return this._charts[id];};_p._syncChartForSeries=function(){var sType=this.getChartType();this._removeAllCharts();if(sType!="grid"){if(this._gridComponent){this.remove(this._gridComponent);this._gridComponent.dispose();this._gridComponent=null;}
var l=sType=="pie"?1:this._series.length;for(var i=0;i<l;i++)
this._createChartFromSeries(this._series[i]);}
else{if(!this._gridComponent){this._gridComponent=new BiGridChart(this);this._gridComponent.setLocation(0,0);this._gridComponent.setRight(0);this._gridComponent.setBottom(0);this._gridComponent.setBorder(new BiBorder(0));this.add(this._gridComponent);}}};_p._removeChart=function(oChart){var id=oChart.getSeries().getId();this._chartArea.remove(oChart);delete this._charts[id];oChart.dispose();};_p._removeAllCharts=function(){for(var id in this._charts){this._chartArea.remove(this._charts[id]);this._charts[id].dispose()
delete this._charts[id];}};_p.dispose=function(){if(this._disposed)return;BiComponent.prototype.dispose.call(this);var i,j;for(var i=this._series.length-1;i>=0;i--)
this._series[i].dispose();for(i=this._categories.length-1;i>=0;i--)
this._categories[i].dispose();for(i in this._seriesMap)
this._seriesMap[i].dispose();for(i in this._categoriesMap)
this._categoriesMap[i].dispose();for(i in this._points){for(j in this._points[i])
this._points[i][j].dispose();}
for(i in this._charts)
this._charts[i].dispose();for(i in this._chartPresentations)
this._chartPresentations[i].dispose();this._presentationManager.dispose();this._points=null;this._chartPresentations=null;this._charts=null;this._series=null;this._seriesMap=null;this._categories=null;this._categoriesMap=null;this._gridComponent=null;this._chartArea=null;this._valueAxis=null;this._categoryAxis=null;this._legend=null;this._contentArea=null;this._gridLines=null;};_p._getCategoryOnXAxis=function(){switch(this._chartType){case"bar":case"stackedbar":case"percentagestackedbar":return false;default:return true;}};_p._getStackedChart=function(){switch(this._chartType){case"stackedcolumn":case"stackedbar":case"percentagestackedcolumn":case"percentagestackedbar":return true;default:return false;}};_p._getPercentageStack=function(){switch(this._chartType){case"percentagestackedcolumn":case"percentagestackedbar":return true;default:return false;}};_p._getSupportsValueAxis=function(){var cs=this.getCharts();if(cs.length==0)
return false;return cs[0].getSupportsValueAxis();};_p._getSupportsCategoryAxis=function(){var cs=this.getCharts();if(cs.length==0)
return false;return cs[0].getSupportsCategoryAxis()};_p._getSupportsGridLines=function(){var cs=this.getCharts();if(cs.length==0)
return false;return cs[0].getSupportsGridLines()};_p._updateCharts=function(){for(var id in this._charts)
this._charts[id]._updateChart();};_p.update=function()
{};_p.updatePoint=function(sSeriesId,sCategoryId){if(this.getChartType()=="grid"){if(!this._gridComponent)return;var c=this._gridComponent.getCellByIds(sSeriesId,sCategoryId);if(c)
c.update();else{var r=this._gridComponent.getRowById(sSeriesId);if(r)
r.update();}}
else{var c=this.getChartForSeries(this.getSeriesById(sSeriesId));if(!c)return;if(sCategoryId!=null)
c._updateValueByCategoryId(sCategoryId);else c._updateValues();}};_p.fromXmlDocument=function(oDoc){this._removeAllCharts();this.clearCategories();this.clearSeries();var docEl=oDoc.documentElement;var title=docEl.selectSingleNode("Title");title=title?title.text:null;var dataEl=docEl.selectSingleNode("Data");var presentationEl=docEl.selectSingleNode("Presentation");var categories=dataEl.selectNodes("Categories/Category");var l=categories.length;for(var i=0;i<l;i++)

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
乱中年女人伦av一区二区| 亚洲国产一区二区视频| 欧美精品一区二区三区蜜臀| 亚洲欧洲av另类| 中文字幕一区二区日韩精品绯色| 国产98色在线|日韩| 国产精品毛片久久久久久| 色悠悠久久综合| 欧美色图片你懂的| 色噜噜狠狠成人中文综合| 蜜芽一区二区三区| 精品夜夜嗨av一区二区三区| 粉嫩高潮美女一区二区三区| 91丨porny丨在线| 91精品国产品国语在线不卡| 国产成人在线电影| 欧美日韩精品系列| 精品不卡在线视频| 亚洲欧美日韩国产中文在线| 欧美成人一区二区三区| 精品sm捆绑视频| 亚洲一级二级在线| 国产高清不卡一区| 欧美喷水一区二区| 欧美熟乱第一页| 久久久久久免费网| 日韩极品在线观看| av不卡在线播放| 精品粉嫩超白一线天av| 亚洲一区视频在线观看视频| 国产精一区二区三区| 97国产一区二区| 久久 天天综合| 欧美亚洲国产一区在线观看网站| 成人sese在线| 26uuu精品一区二区| 日一区二区三区| 欧美曰成人黄网| 在线观看日韩国产| 综合久久一区二区三区| 国产精品一卡二| 日韩欧美国产麻豆| 欧美一二三四区在线| 91精品国产综合久久国产大片| 欧美日韩和欧美的一区二区| 国产精品久久久久影院色老大| 亚洲国产精品激情在线观看| 精品一区二区三区视频在线观看| 亚洲大片精品永久免费| 在线观看日韩精品| 亚洲超碰97人人做人人爱| 97久久精品人人做人人爽| 国产色综合一区| 成人小视频免费在线观看| 亚洲激情在线播放| 综合色天天鬼久久鬼色| 在线视频国内一区二区| 国产精品女人毛片| 国产激情精品久久久第一区二区 | 国产日产欧产精品推荐色| 性久久久久久久久| 欧美日韩视频在线第一区| 一区二区免费看| 韩国毛片一区二区三区| 国产精品进线69影院| 成人午夜电影久久影院| 亚洲精品国产无天堂网2021| 强制捆绑调教一区二区| 久久精品一区蜜桃臀影院| 亚洲一区二区免费视频| 日韩一级大片在线观看| 青草国产精品久久久久久| 欧美一区二区在线观看| 国产成人在线免费观看| 亚洲国产综合色| 国产麻豆一精品一av一免费| 亚洲欧洲在线观看av| 欧美日韩成人在线一区| 国产在线精品免费av| 亚洲乱码国产乱码精品精可以看| 亚洲成av人片在线观看| 国产精品情趣视频| 欧美视频一区在线观看| 蜜桃视频一区二区三区在线观看| 国产寡妇亲子伦一区二区| 五月天欧美精品| |精品福利一区二区三区| 欧美成人bangbros| 欧美私模裸体表演在线观看| 韩国午夜理伦三级不卡影院| 亚洲一区二区视频在线观看| 国产日韩精品一区| 91精品国产一区二区人妖| 在线观看欧美黄色| 91成人看片片| 色婷婷激情一区二区三区| 欧美日韩不卡一区| 欧美视频在线不卡| 丝袜美腿高跟呻吟高潮一区| 一区二区三区电影在线播| 国产精品国产自产拍在线| 中文字幕第一区| 中文字幕在线不卡一区| 国产成人免费视频网站高清观看视频| 久久综合色一综合色88| 精品少妇一区二区三区免费观看| 国产精品99久| 亚洲人成精品久久久久| 亚洲男人电影天堂| 夜夜揉揉日日人人青青一国产精品| 欧美群妇大交群的观看方式| gogo大胆日本视频一区| 欧美日韩亚洲丝袜制服| 色狠狠一区二区三区香蕉| 精品久久久久久久久久久久久久久久久| 91在线一区二区| 精品成人私密视频| 91精品国产色综合久久不卡蜜臀| 色噜噜狠狠一区二区三区果冻| 91在线国内视频| 久久精品一区二区三区不卡牛牛| 欧美精三区欧美精三区| 亚洲欧美偷拍另类a∨色屁股| 欧美日韩电影一区| 色丁香久综合在线久综合在线观看| 日日噜噜夜夜狠狠视频欧美人| 久久久不卡网国产精品一区| 亚洲欧美日韩国产中文在线| 欧美激情一区二区三区| 午夜视频在线观看一区| 亚洲欧洲在线观看av| 欧美韩国日本综合| 免费看日韩a级影片| 波多野洁衣一区| 国产91丝袜在线播放九色| 日韩三级视频在线看| 欧美日韩一区二区在线观看 | 国产欧美日韩不卡| 丝袜脚交一区二区| 色香蕉久久蜜桃| 亚洲欧美日韩久久精品| 国产.欧美.日韩| 欧美成人免费网站| 性久久久久久久久久久久| 在线观看中文字幕不卡| 亚洲欧美日韩成人高清在线一区| 中文字幕在线不卡一区二区三区| 国产精品女同互慰在线看| 精品一区二区三区香蕉蜜桃 | 中文字幕一区二区三区色视频| 国产精品久久毛片a| 一本久久综合亚洲鲁鲁五月天| 日本久久精品电影| 日韩免费电影网站| 午夜电影一区二区三区| 国产精品色婷婷| 综合色中文字幕| 青草国产精品久久久久久| 91精品福利在线| 国产日本一区二区| 国产精品一区久久久久| 日韩丝袜情趣美女图片| 欧美96一区二区免费视频| 欧美丝袜自拍制服另类| 亚洲影视在线观看| 91精品免费在线观看| 青青草国产成人99久久| 精品久久久久久久久久久院品网 | 国产欧美一区二区精品仙草咪| 日韩欧美卡一卡二| 欧美日韩一区二区在线观看视频| 欧美区在线观看| 日韩国产欧美一区二区三区| 日韩一卡二卡三卡四卡| 欧美一个色资源| 国产精品自产自拍| 日本一区二区三区四区在线视频 | 欧美日韩国产成人在线免费| 麻豆91小视频| 欧美极品另类videosde| 色呦呦日韩精品| 日本sm残虐另类| 国产精品色眯眯| 欧美日韩电影一区| 国产福利一区二区三区在线视频| 99精品久久只有精品| 午夜精品在线视频一区| 2020国产精品自拍| 一本到三区不卡视频| 国产精品美女久久久久aⅴ| 欧美午夜在线观看| 国产精品综合网| 久久精品国产在热久久| 亚洲精品菠萝久久久久久久| 亚洲精品一区二区精华| 欧美伊人久久久久久午夜久久久久| 国产日韩影视精品| 制服丝袜日韩国产| 在线观看一区二区精品视频| 国产酒店精品激情|