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

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

?? chartingbase.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/* * 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++)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜精品久久久久久不卡8050| 日韩欧美亚洲国产精品字幕久久久 | 久久精品国产久精国产爱| 亚洲狼人国产精品| 亚洲日本在线天堂| 亚洲男人的天堂一区二区| 亚洲天堂2014| 亚洲免费大片在线观看| 亚洲一区二区美女| 五月婷婷久久综合| 久久精品国产一区二区三| 国产一区二区三区在线观看免费 | 成人开心网精品视频| 国产一区二区三区在线观看免费| 久久99精品国产.久久久久| 国产一区二三区| 丁香激情综合国产| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 91国产免费观看| 在线播放中文一区| 久久美女高清视频| 亚洲日穴在线视频| 日韩中文字幕亚洲一区二区va在线| 日韩成人午夜精品| 国产成人精品午夜视频免费| 99久久夜色精品国产网站| 91片在线免费观看| 91精品国产综合久久精品图片| 日韩精品一区国产麻豆| 国产欧美日本一区二区三区| 亚洲欧美另类小说| 蜜桃传媒麻豆第一区在线观看| 九一久久久久久| av一二三不卡影片| 欧美一区二区三区思思人| 欧美经典三级视频一区二区三区| 亚洲男人都懂的| 美女网站色91| 日本韩国一区二区| 久久综合五月天婷婷伊人| 亚洲欧美在线视频| 精品一区二区免费在线观看| av中文字幕一区| 日韩精品中文字幕一区| 亚洲最快最全在线视频| 国产一区二区影院| 欧美一级久久久久久久大片| 久久久影视传媒| 日韩中文字幕麻豆| 色香蕉成人二区免费| 久久新电视剧免费观看| 亚洲成a人片在线观看中文| 国产成人精品影视| 日韩欧美亚洲一区二区| 亚洲成人在线免费| 色婷婷av一区| 国产精品久久久久久久午夜片| 麻豆成人在线观看| 欧美军同video69gay| 亚洲欧美成人一区二区三区| 国产乱人伦精品一区二区在线观看 | 懂色av一区二区三区免费观看 | 久久电影网电视剧免费观看| 91福利在线观看| 成人免费在线视频| av男人天堂一区| 亚洲国产精品t66y| 国产精品一品二品| 久久久国产精品麻豆| 狠狠v欧美v日韩v亚洲ⅴ| 51精品秘密在线观看| 亚洲线精品一区二区三区八戒| 成人动漫av在线| 国产精品免费观看视频| 成人丝袜高跟foot| 中文字幕第一区综合| 成人精品电影在线观看| 国产欧美精品在线观看| 丁香激情综合五月| 亚洲欧洲精品成人久久奇米网| www.亚洲在线| 亚洲视频电影在线| 欧美视频一区二区三区| 五月激情六月综合| 91精品国产免费久久综合| 日本麻豆一区二区三区视频| 欧美一区二区福利在线| 久久99精品国产麻豆婷婷| 久久婷婷综合激情| hitomi一区二区三区精品| 一区二区三区欧美| 欧美日韩在线亚洲一区蜜芽| 午夜精彩视频在线观看不卡| 日韩欧美亚洲另类制服综合在线| 韩国av一区二区三区在线观看| 国产网红主播福利一区二区| 成人av在线看| 亚洲在线观看免费| 欧美电影精品一区二区| 高清在线观看日韩| 一级做a爱片久久| 欧美一区二区三区不卡| 高清成人免费视频| 亚洲一区二区四区蜜桃| 91精品国产高清一区二区三区蜜臀| 日韩av一区二| 国产精品久久久久久亚洲毛片| 在线精品观看国产| 精品一区二区三区视频| 中文字幕一区二区三区四区| 欧美酷刑日本凌虐凌虐| 国产不卡在线视频| 午夜精品久久久久久久99樱桃| 欧美精品一区二区三区蜜臀| 色婷婷久久一区二区三区麻豆| 美女视频一区二区| 一区二区三区在线观看网站| 精品国产电影一区二区| 欧美三级在线视频| 成人国产精品免费网站| 亚洲h动漫在线| 国产精品看片你懂得 | 国产麻豆一精品一av一免费| 一区二区三区在线不卡| 国产日韩欧美精品在线| 在线成人av网站| 在线视频国产一区| 国产精品一区二区三区四区| 亚洲高清久久久| 亚洲视频一区在线| 国产午夜精品理论片a级大结局| 7777精品伊人久久久大香线蕉 | 国产欧美一区二区精品性色| 91福利资源站| 成人精品视频一区二区三区尤物| 青椒成人免费视频| 日日夜夜精品视频天天综合网| 日韩理论片一区二区| 2023国产精华国产精品| 9191国产精品| 欧美日韩亚洲综合一区| 色综合久久99| 色综合中文字幕国产| 国产精品一区二区91| 激情欧美日韩一区二区| 久久精品国产在热久久| 日本一不卡视频| 天天av天天翘天天综合网| 一区二区三区四区精品在线视频 | 91豆麻精品91久久久久久| www.在线欧美| fc2成人免费人成在线观看播放 | 亚洲色图一区二区三区| 欧美激情综合五月色丁香| 久久久噜噜噜久噜久久综合| 久久亚洲精华国产精华液| 国产婷婷色一区二区三区在线| 亚洲精品一区二区在线观看| 久久视频一区二区| 亚洲国产精品黑人久久久| 欧美国产日韩在线观看| 亚洲欧洲www| 亚洲国产欧美一区二区三区丁香婷| 亚洲主播在线播放| 日本视频在线一区| 久久国产尿小便嘘嘘| 国产一区二区三区四区五区美女| 国产专区综合网| www.性欧美| 色av一区二区| 欧美精品1区2区3区| 日韩欧美一二三| 欧美国产欧美综合| 亚洲精品一二三区| 日韩1区2区日韩1区2区| 国产精品一区二区你懂的| 99久久免费视频.com| 欧美性猛交xxxxxx富婆| 91精品国产品国语在线不卡| 久久久精品人体av艺术| 亚洲丝袜自拍清纯另类| 奇米在线7777在线精品| 成人亚洲精品久久久久软件| 91老师片黄在线观看| 欧美一区二区久久久| 欧美极品xxx| 日韩精品久久理论片| 国产一区二区看久久| 99riav一区二区三区| 日韩一二三区视频| 国产精品色在线观看| 一区二区在线观看免费 | 自拍av一区二区三区| 日韩国产欧美在线视频| 成人午夜精品在线| 欧美一区二区网站| 一区二区三区国产豹纹内裤在线| 激情深爱一区二区| 欧美三级一区二区| 中文字幕日本不卡|