1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
/*
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if(!dojo._hasResource["dojox.charting.widget.SelectableLegend"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.charting.widget.SelectableLegend"] = true;
dojo.provide("dojox.charting.widget.SelectableLegend");
dojo.require("dojox.charting.widget.Legend");
dojo.require("dijit.form.CheckBox");
dojo.require("dojox.charting.action2d.Highlight");
(function(){
var df = dojox.lang.functional;
dojo.declare("dojox.charting.widget.SelectableLegend", [dojox.charting.widget.Legend], {
// summary:
// An enhanced chart legend supporting interactive events on data series
// theme component
outline: false, // outline of vanished data series
transitionFill: null, // fill of deselected data series
transitionStroke: null, // stroke of deselected data series
postCreate: function(){
this.legends = [];
this.legendAnim = {};
this.inherited(arguments);
},
refresh: function(){
this.legends = [];
this.inherited(arguments);
this._applyEvents();
new dojox.charting.widget._FocusManager(this);
},
_addLabel: function(dyn, label){
this.inherited(arguments);
// create checkbox
var legendNodes = dojo.query("td", this.legendBody);
var currentLegendNode = legendNodes[legendNodes.length - 1];
this.legends.push(currentLegendNode);
var checkbox = new dijit.form.CheckBox({checked: true});
dojo.place(checkbox.domNode, currentLegendNode, "first");
// connect checkbox and existed label
var label = dojo.query("label", currentLegendNode)[0];
dojo.attr(label, "for", checkbox.id);
},
_applyEvents: function(){
// summary:
// Apply click-event on checkbox and hover-event on legend icon,
// highlight data series or toggle it.
dojo.forEach(this.legends, function(legend, i){
var targetData, shapes = [], plotName, seriesName;
if(this._isPie()){
targetData = this.chart.stack[0];
shapes.push(targetData.group.children[i]);
plotName = targetData.name;
seriesName = this.chart.series[0].name;
}else{
targetData = this.chart.series[i];
shapes = targetData.group.children;
plotName = targetData.plot;
seriesName = targetData.name;
}
var originalDyn = {
fills : df.map(shapes, "x.getFill()"),
strokes: df.map(shapes, "x.getStroke()")
};
// toggle action
var legendCheckBox = dojo.query(".dijitCheckBox", legend)[0];
dojo.connect(legendCheckBox, "onclick", this, function(e){
this._toggle(shapes, i, legend.vanished, originalDyn, seriesName, plotName);
legend.vanished = !legend.vanished;
e.stopPropagation();
});
// highlight action
var legendIcon = dojo.query(".dojoxLegendIcon", legend)[0],
iconShape = this._getFilledShape(this._surfaces[i].children);
dojo.forEach(["onmouseenter", "onmouseleave"], function(event){
dojo.connect(legendIcon, event, this, function(e){
this._highlight(e, iconShape, shapes, i, legend.vanished, originalDyn, seriesName, plotName);
});
}, this);
},this);
},
_toggle: function(shapes, index, isOff, dyn, seriesName, plotName){
dojo.forEach(shapes, function(shape, i){
var startFill = dyn.fills[i],
endFill = this._getTransitionFill(plotName),
startStroke = dyn.strokes[i],
endStroke = this.transitionStroke;
if(startFill){
if(endFill && (typeof startFill == "string" || startFill instanceof dojo.Color)){
dojox.gfx.fx.animateFill({
shape: shape,
color: {
start: isOff ? endFill : startFill,
end: isOff ? startFill : endFill
}
}).play();
}else{
shape.setFill(isOff ? startFill : endFill);
}
}
if(startStroke && !this.outline){
shape.setStroke(isOff ? startStroke : endStroke);
}
}, this);
},
_highlight: function(e, iconShape, shapes, index, isOff, dyn, seriesName, plotName){
if(!isOff){
var anim = this._getAnim(plotName),
isPie = this._isPie(),
type = formatEventType(e.type);
// highlight the label icon,
var label = {
shape: iconShape,
index: isPie ? "legend" + index : "legend",
run: {name: seriesName},
type: type
};
anim.process(label);
// highlight the data items
dojo.forEach(shapes, function(shape, i){
shape.setFill(dyn.fills[i]);
var o = {
shape: shape,
index: isPie ? index : i,
run: {name: seriesName},
type: type
};
anim.duration = 100;
anim.process(o);
});
}
},
_getAnim: function(plotName){
if(!this.legendAnim[plotName]){
this.legendAnim[plotName] = new dojox.charting.action2d.Highlight(this.chart, plotName);
}
return this.legendAnim[plotName];
},
_getTransitionFill: function(plotName){
// Since series of stacked charts all start from the base line,
// fill the "front" series with plotarea color to make it disappear .
if(this.chart.stack[this.chart.plots[plotName]].declaredClass.indexOf("dojox.charting.plot2d.Stacked") != -1){
return this.chart.theme.plotarea.fill;
}
return null;
},
_getFilledShape: function(shapes){
// summary:
// Get filled shape in legend icon which would be highlighted when hovered
var i = 0;
while(shapes[i]){
if(shapes[i].getFill())return shapes[i];
i++;
}
},
_isPie: function(){
return this.chart.stack[0].declaredClass == "dojox.charting.plot2d.Pie";
}
});
function formatEventType(type){
if(type == "mouseenter")return "onmouseover";
if(type == "mouseleave")return "onmouseout";
return "on" + type;
}
dojo.declare("dojox.charting.widget._FocusManager", null, {
// summary:
// It will take legend as a tab stop, and using
// cursor keys to navigate labels within the legend.
constructor: function(legend){
this.legend = legend;
this.index = 0;
this.horizontalLength = this._getHrizontalLength();
dojo.forEach(legend.legends, function(item, i){
if(i > 0){
dojo.query("input", item).attr("tabindex", -1);
}
});
this.firstLabel = dojo.query("input", legend.legends[0])[0];
dojo.connect(this.firstLabel, "focus", this, function(){this.legend.active = true;});
dojo.connect(this.legend.legendNode, "keydown", this, "_onKeyEvent");
},
_getHrizontalLength: function(){
var horizontal = this.legend.horizontal;
if(typeof horizontal == "number"){
return Math.min(horizontal, this.legend.legends.length);
}else if(!horizontal){
return 1;
}else{
return this.legend.legends.length;
}
},
_onKeyEvent: function(e){
// if not focused
if(!this.legend.active){
return;
}
// lose focus
if(e.keyCode == dojo.keys.TAB){
this.legend.active = false;
return;
}
// handle with arrow keys
var max = this.legend.legends.length;
switch(e.keyCode){
case dojo.keys.LEFT_ARROW:
this.index--;
if(this.index < 0){
this.index += max;
}
break;
case dojo.keys.RIGHT_ARROW:
this.index++;
if(this.index >= max){
this.index -= max;
}
break;
case dojo.keys.UP_ARROW:
if(this.index - this.horizontalLength >= 0){
this.index -= this.horizontalLength;
}
break;
case dojo.keys.DOWN_ARROW:
if(this.index + this.horizontalLength < max){
this.index += this.horizontalLength;
}
break;
default:
return;
}
this._moveToFocus();
dojo.stopEvent(e);
},
_moveToFocus: function(){
dojo.query("input", this.legend.legends[this.index])[0].focus();
}
});
})();
}
|