我如何从dc.js行图中删除空条,每当维度为空或为空时,行图上都会出现一个空条

时间:2017-06-16 11:12:44

标签: javascript dc.js

如何从dc.js行图中删除空条,只要维度为空或为空,行图上就会出现空条。

Empty Bar in row chart

1 个答案:

答案 0 :(得分:1)

你必须使用假组

const remove_empty_bins = (source_group) => {
    return {
        all: () => {
            return source_group.all().filter(function(d) {
                // here your condition
                return d.key !== null && d.key !== '' && d.value !== 0; // etc. 
            });
        }
    };
}

let myFilteredGroup = remove_empty_bins(myGroup);