File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -196,8 +196,14 @@ function cleanAxRef(container, attr) {
196
196
}
197
197
}
198
198
199
- // Make a few changes to the data right away
200
- // before it gets used for anything
199
+ /*
200
+ * cleanData: Make a few changes to the data right away
201
+ * before it gets used for anything
202
+ * Mostly for backward compatibility, modifies the data traces users provide.
203
+ *
204
+ * Important: if you're going to add something here that modifies a data array,
205
+ * update it in place so the new array === the old one.
206
+ */
201
207
exports . cleanData = function ( data , existingData ) {
202
208
// Enforce unique IDs
203
209
var suids = [ ] , // seen uids --- so we can weed out incoming repeats
Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ function computeTickMarks(scene) {
78
78
79
79
80
80
axes . tickmode = tickModeCached ;
81
- // axes.range = rangeCached;
82
81
}
83
82
}
84
83
You can’t perform that action at this time.
0 commit comments