Thanks for bringing this up. The solution I gave on the quoted ticket was incomplete, and I've updated it.
It only considered the return value of filterFunction
, which will be used to display the brush. It did not actually apply the filter, which is the main purpose of filterFunction
!
Two changes are required. First, we need to check if the filters array is empty and clear the dimension's filter if so. Second, we need to apply the resulting filter to the dimension if there is one.
So instead of
chart.filterHandler(function(dimension, filters) {
return filters.map(function(rangefilt) {
var low = keys[Math.ceil(rangefilt[0])], high = keys[Math.ceil(rangefilt[1])] || 'zzz';
return dc.filters.RangedFilter(low,high);
});
});
we get
kpiMoveChart.filterHandler(function(dimension, filters) {
if(filters.length === 0) {
dimension.filter(null);
return filters;
}
var filters2 = filters.map(function(rangefilt) {
var low = keys[Math.ceil(rangefilt[0])], high = keys[Math.ceil(rangefilt[1])] || 'zzzz';
return dc.filters.RangedFilter(low,high);
});
dimension.filterRange(filters2[0]);
return filters2;
});
In addition, you had one small typo: instead of keys[Math.ceil(rangefilt[1]) || 'zzzz']
it should be keys[Math.ceil(rangefilt[1])] || 'zzzz'
Finally, in your bubble chart, it's usually not necessary to override yAxisMin
and friends in order to change the domain of the charts. If you want to fix the domain it's much more elegant to turn off elastic and set the domain directly:
kpiBubbleChart
.y(d3.scale.linear().domain([-10, 160]))
(Overriding xAxisMin
and xAxisMax
didn't seem to have any effect because that scale is ordinal, so it's always going to use the list of keys.)
Here's my fork of your fiddle: https://jsfiddle.net/gordonwoodhull/g34Ldwaz/9/