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 | 1×
1×
1×
| (function ()
{
'use strict';
angular
.module('app.e-commerce')
.controller('DashboardEcommerceController', DashboardEcommerceController);
/** @ngInject */
function DashboardEcommerceController(Dashboard)
{
var vm = this;
// Data
vm.dashboard = Dashboard;
vm.widget1 = vm.dashboard.widget1;
vm.widget2 = vm.dashboard.widget2;
vm.widget3 = vm.dashboard.widget3;
vm.widget4 = vm.dashboard.widget4;
vm.widget5 = {
title : vm.dashboard.widget5.title,
mainChart : {
config : {
refreshDataOnly: true,
deepWatchData : true
},
options: {
chart: {
type : 'multiBarChart',
color : ['#03a9f4', '#b3e5fc'],
height : 420,
margin : {
top : 8,
right : 16,
bottom: 32,
left : 32
},
clipEdge : true,
groupSpacing: 0.3,
reduceXTicks: false,
stacked : true,
duration : 250,
x : function (d)
{
return d.x;
},
y : function (d)
{
return d.y;
},
yAxis : {
tickFormat: function (d)
{
return d;
}
},
legend : {
margin: {
top : 8,
bottom: 32
}
},
controls : {
margin: {
top : 8,
bottom: 32
}
},
tooltip : {
gravity: 's',
classes: 'gravity-s'
}
}
},
data : []
},
days : ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
ranges : vm.dashboard.widget5.ranges,
currentRange: '',
changeRange : function (range)
{
vm.widget5.currentRange = range;
/**
* Update main chart data by iterating through the
* chart dataset and separately adding every single
* dataset by hand.
*
* You MUST NOT swap the entire data object by doing
* something similar to this:
* vm.widget.mainChart.data = chartData
*
* It would be easier but it won't work with the
* live updating / animated charts due to how d3
* works.
*
* If you don't need animated / live updating charts,
* you can simplify these greatly.
*/
angular.forEach(vm.dashboard.widget5.mainChart, function (chartData, index)
{
vm.widget5.mainChart.data[index] = {
key : chartData.key,
values: chartData.values[range]
};
});
},
init : function ()
{
// Run this function once to initialize widget
/**
* Update the range for the first time
*/
vm.widget5.changeRange('TW');
}
};
// Widget 6
vm.widget6 = {
title : vm.dashboard.widget6.title,
mainChart : {
config : {
refreshDataOnly: true,
deepWatchData : true
},
options: {
chart: {
type : 'pieChart',
color : ['#f44336', '#9c27b0', '#03a9f4', '#e91e63'],
height : 400,
margin : {
top : 0,
right : 0,
bottom: 0,
left : 0
},
donut : true,
clipEdge : true,
cornerRadius: 0,
labelType : 'percent',
padAngle : 0.02,
x : function (d)
{
return d.label;
},
y : function (d)
{
return d.value;
},
tooltip : {
gravity: 's',
classes: 'gravity-s'
}
}
},
data : []
},
footerLeft : vm.dashboard.widget6.footerLeft,
footerRight : vm.dashboard.widget6.footerRight,
ranges : vm.dashboard.widget6.ranges,
currentRange: '',
changeRange : function (range)
{
vm.widget6.currentRange = range;
/**
* Update main chart data by iterating through the
* chart dataset and separately adding every single
* dataset by hand.
*
* You MUST NOT swap the entire data object by doing
* something similar to this:
* vm.widget.mainChart.data = chartData
*
* It would be easier but it won't work with the
* live updating / animated charts due to how d3
* works.
*
* If you don't need animated / live updating charts,
* you can simplify these greatly.
*/
angular.forEach(vm.dashboard.widget6.mainChart, function (data, index)
{
vm.widget6.mainChart.data[index] = {
label: data.label,
value: data.values[range]
};
});
},
init : function ()
{
// Run this function once to initialize widget
/**
* Update the range for the first time
*/
vm.widget6.changeRange('TW');
}
};
// Widget 7
vm.widget7 = {
title : vm.dashboard.widget7.title,
ranges : vm.dashboard.widget7.ranges,
customers : vm.dashboard.widget7.customers,
currentRange: 'T'
};
// Methods
//////////
// Initialize Widget 5
vm.widget5.init();
// Initialize Widget 6
vm.widget6.init();
}
})(); |