Newer
Older
/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
var vtJqPlotInterface = function() {
this.legendPlacement = 'outsideGrid'; /* refer: http://www.jqplot.com/docs/files/jqplot-core-js.html#Legend.placement */
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
this.renderPie = function() {
this.element.jqplot([this.data['chartData']], {
seriesDefaults:{
renderer:jQuery.jqplot.PieRenderer,
rendererOptions: {
showDataLabels: true,
dataLabels: 'value'
}
},
legend: {
show: true,
location: 'e'
},
title : this.data['title']
});
}
this.renderBar = function() {
this.element.jqplot(this.data['chartData'] , {
title: this.data['title'],
animate: !$.jqplot.use_excanvas,
seriesDefaults:{
renderer:jQuery.jqplot.BarRenderer,
rendererOptions: {
showDataLabels: true,
dataLabels: 'value',
barDirection : 'vertical'
},
pointLabels: {show: true,edgeTolerance: -15}
},
axes: {
xaxis: {
tickRenderer: jQuery.jqplot.CanvasAxisTickRenderer,
renderer: jQuery.jqplot.CategoryAxisRenderer,
ticks: this.data['labels'],
tickOptions: {
angle: -45
}
},
yaxis: {
min:0,
max: this.data['yMaxValue'],
tickOptions: {
formatString: '%d'
},
pad : 1.2
}
},
legend: {
show : (this.data['data_labels']) ? true:false,
location : 'e',
placement : this.legendPlacement,
showLabels : (this.data['data_labels']) ? true:false,
showSwatch : (this.data['data_labels']) ? true:false,
labels : this.data['data_labels']
}
});
}
this.renderFunnel = function() {
var labels = new Array();
var dataInfo = JSON.parse(this.data);
for(var i=0; i<dataInfo.length; i++) {
labels[i] = dataInfo[i][2];
dataInfo[i][1] = parseFloat(dataInfo[i][1]);
}
/* Transform data friendly to Funnel renderer */
var tmpdataInfo = [];
for (var k in dataInfo) {
tmpdataInfo.push(Object.values(dataInfo[k]));
}
dataInfo = tmpdataInfo;
/* End */
this.element.jqplot([dataInfo], {
seriesDefaults: {
renderer:jQuery.jqplot.FunnelRenderer,
rendererOptions:{
sectionMargin: 12,
widthRatio: 0.1,
showDataLabels:true,
dataLabelThreshold: 0,
dataLabels: 'value'
}
},
legend: {
show: true,
location: 'ne',
placement: this.legendPlacement,
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
labels:labels,
xoffset:20
}
});
}
this.renderMultibar = function() {
var chartData = this.data.data;
var ticks = this.data.ticks;
var labels = this.data.labels;
this.element.jqplot( chartData, {
stackSeries: true,
captureRightClick: true,
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
rendererOptions: {
// Put a 30 pixel margin between bars.
barMargin: 10,
// Highlight bars when mouse button pressed.
// Disables default highlighting on mouse over.
highlightMouseDown: true,
highlightMouseOver : true
},
pointLabels: {show: true,hideZeros: true}
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer,
tickOptions: {
angle: -45
},
ticks: ticks
},
yaxis: {
// Don't pad out the bottom of the data range. By default,
// axes scaled as if data extended 10% above and below the
// actual range to prevent data points right on grid boundaries.
// Don't want to do that here.
padMin: 0,
min:0
}
},
legend: {
show: true,
location: 'e',
placement: this.legendPlacement,
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
labels:labels
}
});
}
this.renderHorizontalbar = function() {
this.element.jqplot(this.data['chartData'], {
title: this.data['title'],
animate: !$.jqplot.use_excanvas,
seriesDefaults: {
renderer:$.jqplot.BarRenderer,
showDataLabels: true,
pointLabels: { show: true, location: 'e', edgeTolerance: -15 },
shadowAngle: 135,
rendererOptions: {
barDirection: 'horizontal'
}
},
axes: {
yaxis: {
tickRenderer: jQuery.jqplot.CanvasAxisTickRenderer,
renderer: jQuery.jqplot.CategoryAxisRenderer,
ticks: this.data['labels'],
tickOptions: {
angle: -45
}
}
},
legend: {
show: true,
location: 'e',
placement: this.legendPlacement,
showSwatch : true,
showLabels : true,
labels:this.data['data_labels']
}
});
}
this.renderLine = function() {
this.element.jqplot(this.data['chartData'], {
title: this.data['title'],
legend:{
show:true,
labels:this.data['data_labels'],
location:'ne',
showSwatch : true,
showLabels : true,
placement : this.legendPlacement,
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
},
seriesDefaults: {
pointLabels: {
show: true
}
},
axes: {
xaxis: {
min:0,
pad: 1,
tickRenderer: jQuery.jqplot.CanvasAxisTickRenderer,
renderer: $.jqplot.CategoryAxisRenderer,
ticks:this.data['labels'],
tickOptions: {
formatString: '%b %#d',
angle: -30
}
}
},
cursor: {
show: true
}
});
}
this.renderColumn = function() {
var chartData = [];
var ticks = this.data.categories;
var labels = [];
for(var i = 0; i < this.data.chartData.length ; i++){
labels.push(this.data.chartData[i].name);
chartData.push(this.data.chartData[i].data);
}
this.element.jqplot( chartData, {
stackSeries: false,
captureRightClick: true,
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
rendererOptions: {
// Put a 30 pixel margin between bars.
barMargin: 10,
// Highlight bars when mouse button pressed.
// Disables default highlighting on mouse over.
highlightMouseDown: true,
highlightMouseOver : true
},
pointLabels: {show: true,hideZeros: true}
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer,
tickOptions: {
angle: -45
},
ticks: ticks
},
yaxis: {
// Don't pad out the bottom of the data range. By default,
// axes scaled as if data extended 10% above and below the
// actual range to prevent data points right on grid boundaries.
// Don't want to do that here.
padMin: 0,
min:0
}
},
legend: {
show: true,
location: 'e',
placement: this.legendPlacement,
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
labels:labels
}
});
}
this.registerClick = function() {
var thisInstance = this;
this.element.on('jqplotDataClick',function(ev, gridpos, datapos, neighbor, plot){
var url;
switch(thisInstance.options.renderer){
case 'funnel' :
url = thisInstance.options.links[datapos]['links'];
break;
case 'multibar' :
if(thisInstance.options.links)
url = thisInstance.options.links[gridpos][datapos];
break;
// bar,pie,linechart,horizontalbar
default :
if(typeof thisInstance.options.links != 'undefined')
url = thisInstance.options.links[datapos];
break;
}
thisInstance.triggerClick({'url':url});
});
}
this.postRendering = function() {
this.element.on("jqplotDataMouseOver", function(evt, seriesIndex, pointIndex, neighbor) {
$('.jqplot-event-canvas').css( 'cursor', 'pointer' );
});
this.element.on("jqplotDataUnhighlight", function(evt, seriesIndex, pointIndex, neighbor) {
$('.jqplot-event-canvas').css( 'cursor', 'auto' );
});
this.registerClick();
}
this.init = function(element,data,options) {
this.element = element;
this.data = data;
this.options = options;
switch(this.options.renderer) {
case 'pie' : this.renderPie();break;
case 'bar' : this.renderBar();break;
case 'funnel' : this.renderFunnel();break;
case 'multibar' : this.renderMultibar();break;
case 'horizontalbar' : this.renderHorizontalbar();break;
case 'linechart' : this.renderLine();break;
case 'column' : this.renderColumn();break;
default : console.log('jqplot renderer not supported');
}
this.postRendering();
}
}