forked from joetsoi/flot-barnumbers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.flot.barnumbers.js
90 lines (85 loc) · 3.17 KB
/
jquery.flot.barnumbers.js
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
/* Copyright Joe Tsoi, FreeBSD-License
* simple flot plugin to draw bar numbers halfway in bars
*
* options are
* series: {
* bars: {
* showNumbers: boolean (left for compatibility)
* numbers : {
* show : boolean,
* alignX : number or function,
* alignY : number or function,
* }
* }
* }
*/
(function ($) {
var options = {
bars: {
numbers: {
}
}
};
function processOptions(plot, options) {
var bw = options.series.bars.barWidth;
var numbers = options.series.bars.numbers;
var horizontal = options.series.bars.horizontal;
if(horizontal){
numbers.xAlign = numbers.xAlign || function(x){ return x / 2; };
numbers.yAlign = numbers.yAlign || function(y){ return y + (bw / 2); };
numbers.horizontalShift = 0;
} else {
numbers.xAlign = numbers.xAlign || function(x){ return x + (bw / 2); };
numbers.yAlign = numbers.yAlign || function(y){ return y / 2; };
numbers.horizontalShift = 1;
}
}
function drawSeries(plot, ctx){
$.each(plot.getData(), function(idx, series) {
if(series.bars.numbers.show || series.bars.showNumbers){
var ps = series.datapoints.pointsize;
var points = series.datapoints.points;
var ctx = plot.getCanvas().getContext('2d');
var offset = plot.getPlotOffset();
ctx.textBaseline = "top";
ctx.textAlign = "center";
alignOffset = series.bars.align === "left" ? series.bars.barWidth / 2 : 0;
xAlign = series.bars.numbers.xAlign;
yAlign = series.bars.numbers.yAlign;
var shiftX = typeof xAlign == "number" ? function(x){ return x; } : xAlign;
var shiftY = typeof yAlign == "number" ? function(y){ return y; } : yAlign;
axes = {
0 : 'x',
1 : 'y'
}
hs = series.bars.numbers.horizontalShift;
for(var i = 0; i < points.length; i += ps){
barNumber = i + series.bars.numbers.horizontalShift
var point = {
'x': shiftX(points[i]),
'y': shiftY(points[i+1])
};
if(series.stack != null){
point[axes[hs]] = (points[barNumber] - series.data[i/3][hs] / 2);
text = series.data[i/3][hs];
} else {
text = points[barNumber];
}
var c = plot.p2c(point);
ctx.fillText(text.toString(10), c.left + offset.left, c.top + offset.top)
}
}
});
}
function init(plot) {
plot.hooks.processOptions.push(processOptions);
plot.hooks.drawSeries.push(drawSeries);
plot.hooks.draw.push(drawSeries);
}
$.plot.plugins.push({
init: init,
options: options,
name: 'barnumbers',
version: '0.4'
});
})(jQuery);