You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first call in default _filterHandler resets all filter. I don't think this is needed as all filters are anyway controlled by filterFunction.
var _filterHandler = function (dimension, filters) {
dimension.filter(null); // -- is this really needed ?
this is causing unnecessary cycles for adding all data back and then removing all of them based on added filter (or vice versa). My guess is it somehow breaks incremental nature of crossfilter. Commenting this out caused less calls to custom reduce functions (while keeping same correct filtering behavior). crossfilter used is 1.3.11
The text was updated successfully, but these errors were encountered:
first call in default _filterHandler resets all filter. I don't think this is needed as all filters are anyway controlled by filterFunction.
this is causing unnecessary cycles for adding all data back and then removing all of them based on added filter (or vice versa). My guess is it somehow breaks incremental nature of crossfilter. Commenting this out caused less calls to custom reduce functions (while keeping same correct filtering behavior). crossfilter used is 1.3.11
The text was updated successfully, but these errors were encountered: