forked from pa7/heatmap.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsegment-heatmap.js
71 lines (52 loc) · 1.22 KB
/
segment-heatmap.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
(function() {
'use strict';
var segmentHeatmapPlugin = (function SegmentHeatmapPluginClosure() {
var defaultSegmentsX = 10;
var defaultSegmentsY = 5;
function SegmentStore(config) {
this._coordinator = {};
this._data = [];
this._max = 1;
this._min = 0;
this._initSegments();
};
SegmentStore.prototype = {
_initSegments: function() {
},
setCoordinator: function(coordinator) {
},
setData: function(data) {
var max = data.max;
var min = data.min;
var data = data.data;
this._coordinator.emit('renderall', {
min: min,
max: max,
data: data
});
},
addData: function(data) {
},
removeData: function(data) {
},
getData: function() {
return this._data;
}
};
function SegmentRenderer(config) {
};
SegmentRenderer.prototype = {
renderAll: function(data) {
},
renderPartial: function(data) {
},
getDataURL: function() {
}
};
return {
store: SegmentStore,
renderer: SegmentRenderer
}
}());
h337.register('segment-heatmap', segmentHeatmapPlugin);
}());