Skip to content

Commit e1589bc

Browse files
committed
removing unused attributes
1 parent 1ddbd93 commit e1589bc

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/transforms/aggregate.js

-3
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ exports.calcTransform = function(gd, trace, opts) {
218218
var i, vi, groupIndex, newGrouping;
219219

220220
var groupIndices = {};
221-
var groupToPoints = {};
222221
var indexToPoints = {};
223222
var groupings = [];
224223
for(i = 0; i < groupArray.length; i++) {
@@ -228,13 +227,11 @@ exports.calcTransform = function(gd, trace, opts) {
228227
groupIndices[vi] = groupings.length;
229228
newGrouping = [i];
230229
groupings.push(newGrouping);
231-
groupToPoints[vi] = newGrouping;
232230
indexToPoints[groupIndices[vi]] = newGrouping;
233231
}
234232
else groupings[groupIndex].push(i);
235233
}
236234

237-
opts.groupToPoints = groupToPoints;
238235
opts.indexToPoints = indexToPoints;
239236

240237
var aggregations = opts.aggregations;

0 commit comments

Comments
 (0)