123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799 |
- define("dojox/charting/axis2d/Default", ["dojo/_base/lang", "dojo/_base/array","dojo/_base/sniff", "dojo/_base/declare",
- "dojo/_base/connect", "dojo/_base/html", "dojo/dom-geometry", "./Invisible",
- "../scaler/common", "../scaler/linear", "./common", "dojox/gfx", "dojox/lang/utils"],
- function(lang, arr, has, declare, connect, html, domGeom, Invisible, scommon,
- lin, acommon, g, du){
-
- var labelGap = 4,
- centerAnchorLimit = 45;
- return declare("dojox.charting.axis2d.Default", Invisible, {
-
-
-
-
-
-
-
-
- defaultParams: {
- vertical: false,
- fixUpper: "none",
- fixLower: "none",
- natural: false,
- leftBottom: true,
- includeZero: false,
- fixed: true,
- majorLabels: true,
- minorTicks: true,
- minorLabels: true,
- microTicks: false,
- rotation: 0,
- htmlLabels: true,
- enableCache: false
- },
- optionalParams: {
- min: 0,
- max: 1,
- from: 0,
- to: 1,
- majorTickStep: 4,
- minorTickStep: 2,
- microTickStep: 1,
- labels: [],
-
-
- labelFunc: null,
- maxLabelSize: 0,
- maxLabelCharCount: 0,
- trailingSymbol: null,
-
-
-
- stroke: {},
- majorTick: {},
- minorTick: {},
- microTick: {},
- tick: {},
- font: "",
- fontColor: "",
- title: "",
- titleGap: 0,
- titleFont: "",
- titleFontColor: "",
- titleOrientation: ""
- },
- constructor: function(chart, kwArgs){
-
-
-
-
-
-
- this.opt = lang.clone(this.defaultParams);
- du.updateWithObject(this.opt, kwArgs);
- du.updateWithPattern(this.opt, kwArgs, this.optionalParams);
- if(this.opt.enableCache){
- this._textFreePool = [];
- this._lineFreePool = [];
- this._textUsePool = [];
- this._lineUsePool = [];
- }
- },
- getOffsets: function(){
-
-
-
-
- var s = this.scaler, offsets = { l: 0, r: 0, t: 0, b: 0 };
- if(!s){
- return offsets;
- }
- var o = this.opt, labelWidth = 0, a, b, c, d,
- gl = scommon.getNumericLabel,
- offset = 0, ma = s.major, mi = s.minor,
- ta = this.chart.theme.axis,
-
- taFont = o.font || (ta.majorTick && ta.majorTick.font) || (ta.tick && ta.tick.font),
- taTitleFont = o.titleFont || (ta.tick && ta.tick.titleFont),
- taTitleGap = (o.titleGap==0) ? 0 : o.titleGap || (ta.tick && ta.tick.titleGap) || 15,
- taMajorTick = this.chart.theme.getTick("major", o),
- taMinorTick = this.chart.theme.getTick("minor", o),
- size = taFont ? g.normalizedLength(g.splitFontString(taFont).size) : 0,
- tsize = taTitleFont ? g.normalizedLength(g.splitFontString(taTitleFont).size) : 0,
- rotation = o.rotation % 360, leftBottom = o.leftBottom,
- cosr = Math.abs(Math.cos(rotation * Math.PI / 180)),
- sinr = Math.abs(Math.sin(rotation * Math.PI / 180));
- this.trailingSymbol = (o.trailingSymbol === undefined || o.trailingSymbol === null) ? this.trailingSymbol : o.trailingSymbol;
- if(rotation < 0){
- rotation += 360;
- }
- if(size){
-
- if(this.labels){
- labelWidth = this._groupLabelWidth(this.labels, taFont, o.maxLabelCharCount);
- }else{
- labelWidth = this._groupLabelWidth([
- gl(ma.start, ma.prec, o),
- gl(ma.start + ma.count * ma.tick, ma.prec, o),
- gl(mi.start, mi.prec, o),
- gl(mi.start + mi.count * mi.tick, mi.prec, o)
- ], taFont, o.maxLabelCharCount);
- }
- labelWidth = o.maxLabelSize ? Math.min(o.maxLabelSize, labelWidth) : labelWidth;
- if(this.vertical){
- var side = leftBottom ? "l" : "r";
- switch(rotation){
- case 0:
- case 180:
- offsets[side] = labelWidth;
- offsets.t = offsets.b = size / 2;
- break;
- case 90:
- case 270:
- offsets[side] = size;
- offsets.t = offsets.b = labelWidth / 2;
- break;
- default:
- if(rotation <= centerAnchorLimit || (180 < rotation && rotation <= (180 + centerAnchorLimit))){
- offsets[side] = size * sinr / 2 + labelWidth * cosr;
- offsets[leftBottom ? "t" : "b"] = size * cosr / 2 + labelWidth * sinr;
- offsets[leftBottom ? "b" : "t"] = size * cosr / 2;
- }else if(rotation > (360 - centerAnchorLimit) || (180 > rotation && rotation > (180 - centerAnchorLimit))){
- offsets[side] = size * sinr / 2 + labelWidth * cosr;
- offsets[leftBottom ? "b" : "t"] = size * cosr / 2 + labelWidth * sinr;
- offsets[leftBottom ? "t" : "b"] = size * cosr / 2;
- }else if(rotation < 90 || (180 < rotation && rotation < 270)){
- offsets[side] = size * sinr + labelWidth * cosr;
- offsets[leftBottom ? "t" : "b"] = size * cosr + labelWidth * sinr;
- }else{
- offsets[side] = size * sinr + labelWidth * cosr;
- offsets[leftBottom ? "b" : "t"] = size * cosr + labelWidth * sinr;
- }
- break;
- }
- offsets[side] += labelGap + Math.max(taMajorTick.length, taMinorTick.length) + (o.title ? (tsize + taTitleGap) : 0);
- }else{
- var side = leftBottom ? "b" : "t";
- switch(rotation){
- case 0:
- case 180:
- offsets[side] = size;
- offsets.l = offsets.r = labelWidth / 2;
- break;
- case 90:
- case 270:
- offsets[side] = labelWidth;
- offsets.l = offsets.r = size / 2;
- break;
- default:
- if((90 - centerAnchorLimit) <= rotation && rotation <= 90 || (270 - centerAnchorLimit) <= rotation && rotation <= 270){
- offsets[side] = size * sinr / 2 + labelWidth * cosr;
- offsets[leftBottom ? "r" : "l"] = size * cosr / 2 + labelWidth * sinr;
- offsets[leftBottom ? "l" : "r"] = size * cosr / 2;
- }else if(90 <= rotation && rotation <= (90 + centerAnchorLimit) || 270 <= rotation && rotation <= (270 + centerAnchorLimit)){
- offsets[side] = size * sinr / 2 + labelWidth * cosr;
- offsets[leftBottom ? "l" : "r"] = size * cosr / 2 + labelWidth * sinr;
- offsets[leftBottom ? "r" : "l"] = size * cosr / 2;
- }else if(rotation < centerAnchorLimit || (180 < rotation && rotation < (180 - centerAnchorLimit))){
- offsets[side] = size * sinr + labelWidth * cosr;
- offsets[leftBottom ? "r" : "l"] = size * cosr + labelWidth * sinr;
- }else{
- offsets[side] = size * sinr + labelWidth * cosr;
- offsets[leftBottom ? "l" : "r"] = size * cosr + labelWidth * sinr;
- }
- break;
- }
- offsets[side] += labelGap + Math.max(taMajorTick.length, taMinorTick.length) + (o.title ? (tsize + taTitleGap) : 0);
- }
- }
- if(labelWidth){
- this._cachedLabelWidth = labelWidth;
- }
- return offsets;
- },
- cleanGroup: function(creator){
- if(this.opt.enableCache && this.group){
- this._lineFreePool = this._lineFreePool.concat(this._lineUsePool);
- this._lineUsePool = [];
- this._textFreePool = this._textFreePool.concat(this._textUsePool);
- this._textUsePool = [];
- }
- this.inherited(arguments);
- },
- createText: function(labelType, creator, x, y, align, textContent, font, fontColor, labelWidth){
- if(!this.opt.enableCache || labelType=="html"){
- return acommon.createText[labelType](
- this.chart,
- creator,
- x,
- y,
- align,
- textContent,
- font,
- fontColor,
- labelWidth
- );
- }
- var text;
- if (this._textFreePool.length > 0){
- text = this._textFreePool.pop();
- text.setShape({x: x, y: y, text: textContent, align: align});
-
-
-
- creator.add(text);
- }else{
- text = acommon.createText[labelType](
- this.chart,
- creator,
- x,
- y,
- align,
- textContent,
- font,
- fontColor,
- labelWidth
- ); }
- this._textUsePool.push(text);
- return text;
- },
- createLine: function(creator, params){
- var line;
- if(this.opt.enableCache && this._lineFreePool.length > 0){
- line = this._lineFreePool.pop();
- line.setShape(params);
-
- creator.add(line);
- }else{
- line = creator.createLine(params);
- }
- if(this.opt.enableCache){
- this._lineUsePool.push(line);
- }
- return line;
- },
- render: function(dim, offsets){
-
-
-
-
-
-
-
-
- if(!this.dirty){
- return this;
- }
-
- var o = this.opt, ta = this.chart.theme.axis, leftBottom = o.leftBottom, rotation = o.rotation % 360,
- start, stop, titlePos, titleRotation=0, titleOffset, axisVector, tickVector, anchorOffset, labelOffset, labelAlign,
-
- taFont = o.font || (ta.majorTick && ta.majorTick.font) || (ta.tick && ta.tick.font),
- taTitleFont = o.titleFont || (ta.tick && ta.tick.titleFont),
-
- taFontColor = o.fontColor || (ta.majorTick && ta.majorTick.fontColor) || (ta.tick && ta.tick.fontColor) || "black",
- taTitleFontColor = o.titleFontColor || (ta.tick && ta.tick.titleFontColor) || "black",
- taTitleGap = (o.titleGap==0) ? 0 : o.titleGap || (ta.tick && ta.tick.titleGap) || 15,
- taTitleOrientation = o.titleOrientation || (ta.tick && ta.tick.titleOrientation) || "axis",
- taMajorTick = this.chart.theme.getTick("major", o),
- taMinorTick = this.chart.theme.getTick("minor", o),
- taMicroTick = this.chart.theme.getTick("micro", o),
- tickSize = Math.max(taMajorTick.length, taMinorTick.length, taMicroTick.length),
- taStroke = "stroke" in o ? o.stroke : ta.stroke,
- size = taFont ? g.normalizedLength(g.splitFontString(taFont).size) : 0,
- cosr = Math.abs(Math.cos(rotation * Math.PI / 180)),
- sinr = Math.abs(Math.sin(rotation * Math.PI / 180)),
- tsize = taTitleFont ? g.normalizedLength(g.splitFontString(taTitleFont).size) : 0;
- if(rotation < 0){
- rotation += 360;
- }
- if(this.vertical){
- start = {y: dim.height - offsets.b};
- stop = {y: offsets.t};
- titlePos = {y: (dim.height - offsets.b + offsets.t)/2};
- titleOffset = size * sinr + (this._cachedLabelWidth || 0) * cosr + labelGap + Math.max(taMajorTick.length, taMinorTick.length) + tsize + taTitleGap;
- axisVector = {x: 0, y: -1};
- labelOffset = {x: 0, y: 0};
- tickVector = {x: 1, y: 0};
- anchorOffset = {x: labelGap, y: 0};
- switch(rotation){
- case 0:
- labelAlign = "end";
- labelOffset.y = size * 0.4;
- break;
- case 90:
- labelAlign = "middle";
- labelOffset.x = -size;
- break;
- case 180:
- labelAlign = "start";
- labelOffset.y = -size * 0.4;
- break;
- case 270:
- labelAlign = "middle";
- break;
- default:
- if(rotation < centerAnchorLimit){
- labelAlign = "end";
- labelOffset.y = size * 0.4;
- }else if(rotation < 90){
- labelAlign = "end";
- labelOffset.y = size * 0.4;
- }else if(rotation < (180 - centerAnchorLimit)){
- labelAlign = "start";
- }else if(rotation < (180 + centerAnchorLimit)){
- labelAlign = "start";
- labelOffset.y = -size * 0.4;
- }else if(rotation < 270){
- labelAlign = "start";
- labelOffset.x = leftBottom ? 0 : size * 0.4;
- }else if(rotation < (360 - centerAnchorLimit)){
- labelAlign = "end";
- labelOffset.x = leftBottom ? 0 : size * 0.4;
- }else{
- labelAlign = "end";
- labelOffset.y = size * 0.4;
- }
- }
- if(leftBottom){
- start.x = stop.x = offsets.l;
- titleRotation = (taTitleOrientation && taTitleOrientation == "away") ? 90 : 270;
- titlePos.x = offsets.l - titleOffset + (titleRotation == 270 ? tsize : 0);
- tickVector.x = -1;
- anchorOffset.x = -anchorOffset.x;
- }else{
- start.x = stop.x = dim.width - offsets.r;
- titleRotation = (taTitleOrientation && taTitleOrientation == "axis") ? 90 : 270;
- titlePos.x = dim.width - offsets.r + titleOffset - (titleRotation == 270 ? 0 : tsize);
- switch(labelAlign){
- case "start":
- labelAlign = "end";
- break;
- case "end":
- labelAlign = "start";
- break;
- case "middle":
- labelOffset.x += size;
- break;
- }
- }
- }else{
- start = {x: offsets.l};
- stop = {x: dim.width - offsets.r};
- titlePos = {x: (dim.width - offsets.r + offsets.l)/2};
- titleOffset = size * cosr + (this._cachedLabelWidth || 0) * sinr + labelGap + Math.max(taMajorTick.length, taMinorTick.length) + tsize + taTitleGap;
- axisVector = {x: 1, y: 0};
- labelOffset = {x: 0, y: 0};
- tickVector = {x: 0, y: 1};
- anchorOffset = {x: 0, y: labelGap};
- switch(rotation){
- case 0:
- labelAlign = "middle";
- labelOffset.y = size;
- break;
- case 90:
- labelAlign = "start";
- labelOffset.x = -size * 0.4;
- break;
- case 180:
- labelAlign = "middle";
- break;
- case 270:
- labelAlign = "end";
- labelOffset.x = size * 0.4;
- break;
- default:
- if(rotation < (90 - centerAnchorLimit)){
- labelAlign = "start";
- labelOffset.y = leftBottom ? size : 0;
- }else if(rotation < (90 + centerAnchorLimit)){
- labelAlign = "start";
- labelOffset.x = -size * 0.4;
- }else if(rotation < 180){
- labelAlign = "start";
- labelOffset.y = leftBottom ? 0 : -size;
- }else if(rotation < (270 - centerAnchorLimit)){
- labelAlign = "end";
- labelOffset.y = leftBottom ? 0 : -size;
- }else if(rotation < (270 + centerAnchorLimit)){
- labelAlign = "end";
- labelOffset.y = leftBottom ? size * 0.4 : 0;
- }else{
- labelAlign = "end";
- labelOffset.y = leftBottom ? size : 0;
- }
- }
- if(leftBottom){
- start.y = stop.y = dim.height - offsets.b;
- titleRotation = (taTitleOrientation && taTitleOrientation == "axis") ? 180 : 0;
- titlePos.y = dim.height - offsets.b + titleOffset - (titleRotation ? tsize : 0);
- }else{
- start.y = stop.y = offsets.t;
- titleRotation = (taTitleOrientation && taTitleOrientation == "away") ? 180 : 0;
- titlePos.y = offsets.t - titleOffset + (titleRotation ? 0 : tsize);
- tickVector.y = -1;
- anchorOffset.y = -anchorOffset.y;
- switch(labelAlign){
- case "start":
- labelAlign = "end";
- break;
- case "end":
- labelAlign = "start";
- break;
- case "middle":
- labelOffset.y -= size;
- break;
- }
- }
- }
-
- this.cleanGroup();
- try{
- var s = this.group,
- c = this.scaler,
- t = this.ticks,
- canLabel,
- f = lin.getTransformerFromModel(this.scaler),
-
-
- labelType = (!o.title || !titleRotation) && !rotation && this.opt.htmlLabels && !has("ie") && !has("opera") ? "html" : "gfx",
- dx = tickVector.x * taMajorTick.length,
- dy = tickVector.y * taMajorTick.length;
- s.createLine({
- x1: start.x,
- y1: start.y,
- x2: stop.x,
- y2: stop.y
- }).setStroke(taStroke);
-
-
- if(o.title){
- var axisTitle = acommon.createText[labelType](
- this.chart,
- s,
- titlePos.x,
- titlePos.y,
- "middle",
- o.title,
- taTitleFont,
- taTitleFontColor
- );
- if(labelType == "html"){
- this.htmlElements.push(axisTitle);
- }else{
-
-
- axisTitle.setTransform(g.matrix.rotategAt(titleRotation, titlePos.x, titlePos.y));
- }
- }
-
-
- if(t==null){
- this.dirty = false;
- return this;
- }
- arr.forEach(t.major, function(tick){
- var offset = f(tick.value), elem,
- x = start.x + axisVector.x * offset,
- y = start.y + axisVector.y * offset;
- this.createLine(s, {
- x1: x, y1: y,
- x2: x + dx,
- y2: y + dy
- }).setStroke(taMajorTick);
- if(tick.label){
- var label = o.maxLabelCharCount ? this.getTextWithLimitCharCount(tick.label, taFont, o.maxLabelCharCount) : {
- text: tick.label,
- truncated: false
- };
- label = o.maxLabelSize ? this.getTextWithLimitLength(label.text, taFont, o.maxLabelSize, label.truncated) : label;
- elem = this.createText(labelType,
- s,
- x + dx + anchorOffset.x + (rotation ? 0 : labelOffset.x),
- y + dy + anchorOffset.y + (rotation ? 0 : labelOffset.y),
- labelAlign,
- label.text,
- taFont,
- taFontColor
-
- );
-
-
-
-
-
-
- if(this.chart.truncateBidi && label.truncated){
- this.chart.truncateBidi(elem, tick.label, labelType);
- }
- label.truncated && this.labelTooltip(elem, this.chart, tick.label, label.text, taFont, labelType);
- if(labelType == "html"){
- this.htmlElements.push(elem);
- }else if(rotation){
- elem.setTransform([
- {dx: labelOffset.x, dy: labelOffset.y},
- g.matrix.rotategAt(
- rotation,
- x + dx + anchorOffset.x,
- y + dy + anchorOffset.y
- )
- ]);
- }
- }
- }, this);
- dx = tickVector.x * taMinorTick.length;
- dy = tickVector.y * taMinorTick.length;
- canLabel = c.minMinorStep <= c.minor.tick * c.bounds.scale;
- arr.forEach(t.minor, function(tick){
- var offset = f(tick.value), elem,
- x = start.x + axisVector.x * offset,
- y = start.y + axisVector.y * offset;
- this.createLine(s, {
- x1: x, y1: y,
- x2: x + dx,
- y2: y + dy
- }).setStroke(taMinorTick);
- if(canLabel && tick.label){
- var label = o.maxLabelCharCount ? this.getTextWithLimitCharCount(tick.label, taFont, o.maxLabelCharCount) : {
- text: tick.label,
- truncated: false
- };
- label = o.maxLabelSize ? this.getTextWithLimitLength(label.text, taFont, o.maxLabelSize, label.truncated) : label;
- elem = this.createText(labelType,
- s,
- x + dx + anchorOffset.x + (rotation ? 0 : labelOffset.x),
- y + dy + anchorOffset.y + (rotation ? 0 : labelOffset.y),
- labelAlign,
- label.text,
- taFont,
- taFontColor
-
- );
-
-
-
-
-
- if(this.chart.getTextDir && label.truncated){
- this.chart.truncateBidi(elem, tick.label, labelType);
- }
- label.truncated && this.labelTooltip(elem, this.chart, tick.label, label.text, taFont, labelType);
- if(labelType == "html"){
- this.htmlElements.push(elem);
- }else if(rotation){
- elem.setTransform([
- {dx: labelOffset.x, dy: labelOffset.y},
- g.matrix.rotategAt(
- rotation,
- x + dx + anchorOffset.x,
- y + dy + anchorOffset.y
- )
- ]);
- }
- }
- }, this);
- dx = tickVector.x * taMicroTick.length;
- dy = tickVector.y * taMicroTick.length;
- arr.forEach(t.micro, function(tick){
- var offset = f(tick.value), elem,
- x = start.x + axisVector.x * offset,
- y = start.y + axisVector.y * offset;
- this.createLine(s, {
- x1: x, y1: y,
- x2: x + dx,
- y2: y + dy
- }).setStroke(taMicroTick);
- }, this);
- }catch(e){
-
- }
- this.dirty = false;
- return this;
- },
- labelTooltip: function(elem, chart, label, truncatedLabel, font, elemType){
- var modules = ["dijit/Tooltip"];
- var aroundRect = {type: "rect"}, position = ["above", "below"],
- fontWidth = g._base._getTextBox(truncatedLabel, {font: font}).w || 0,
- fontHeight = font ? g.normalizedLength(g.splitFontString(font).size) : 0;
- if(elemType == "html"){
- lang.mixin(aroundRect, html.coords(elem.firstChild, true));
- aroundRect.width = Math.ceil(fontWidth);
- aroundRect.height = Math.ceil(fontHeight);
- this._events.push({
- shape: dojo,
- handle: connect.connect(elem.firstChild, "onmouseover", this, function(e){
- require(modules, function(Tooltip){
- Tooltip.show(label, aroundRect, position);
- });
- })
- });
- this._events.push({
- shape: dojo,
- handle: connect.connect(elem.firstChild, "onmouseout", this, function(e){
- require(modules, function(Tooltip){
- Tooltip.hide(aroundRect);
- });
- })
- });
- }else{
- var shp = elem.getShape(),
- lt = html.coords(chart.node, true);
- aroundRect = lang.mixin(aroundRect, {
- x: shp.x - fontWidth / 2,
- y: shp.y
- });
- aroundRect.x += lt.x;
- aroundRect.y += lt.y;
- aroundRect.x = Math.round(aroundRect.x);
- aroundRect.y = Math.round(aroundRect.y);
- aroundRect.width = Math.ceil(fontWidth);
- aroundRect.height = Math.ceil(fontHeight);
- this._events.push({
- shape: elem,
- handle: elem.connect("onmouseenter", this, function(e){
- require(modules, function(Tooltip){
- Tooltip.show(label, aroundRect, position);
- });
- })
- });
- this._events.push({
- shape: elem,
- handle: elem.connect("onmouseleave", this, function(e){
- require(modules, function(Tooltip){
- Tooltip.hide(aroundRect);
- });
- })
- });
- }
- }
- });
- });
|