Removing 0 values from dc js aggregated data table
问题 I have a table with aggregated data that groups on two columns and gets its data from a fake crossfilter dimension: var groupedDimension = ndx.dimension(function(d) {return d.date + "/./" +d.Supplier}) .group().reduceSum(function (d) {return +d.total;}); I cannot get the table to hide rows with 0-values when it is crossfiltered, though. For example, I have tried to tack another fake group onto the fake dimension to get rid of the 0's but that threw an error. Here is the jsfiddle: https:/