作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从我的数据表中过滤掉 FTE 值为 0 的行,但前提是从我的热图中选择了一个框。如果未选择任何框,则数据表应显示 FTE 值为 0 的行。
我找到了这个:https://groups.google.com/forum/#!topic/dc-js-user-group/PgVi1TS8WDw谈论将一个群体伪装成一个维度。
数据表维度:
var dimension = ndx.dimension(function (d) {
return d.Resource + ' ' + d.Month + ' ' + d.FTE;
});
数据表:
var index = 0;
detailedTable = dc.dataTable('.detailedTable')
.dimension(dimension)
.group(function (d) {
return '';
})
.columns([
function (d) {
index = index + 1;
return resultStart + index;
},
function (d) {
return d.Resource;
},
function (d) {
return d.FTE;
},
function (d) {
return d.Month;
}
])
.size(Infinity)
.on('renderlet', function (c) {
index = 0,
displayResult();
});
热图框点击:
heatMap.boxOnClick(function (d) {
//filter dataTable here
//Deflut boxOnClick:
var filter = d.key;
dc.events.trigger(function () {
heatMap.filter(filter);
heatMap.redrawGroup();
});
});
最佳答案
抱歉我的困惑 - 如果我这次没理解错的话,这完全是微不足道的,而且这是你想要“假维度”的罕见情况之一。
假维度将读取原始维度并根据谓词对其进行过滤。谓词会说“该行的 FTE > 0 或热图上未选择任何内容”
function filtered_dimension(dimension, f) {
return {
top: function(N) {
return dimension.top(N).filter(f);
},
bottom: function(N) {
return dimension.bottom(N).filter(f);
}
};
}
var dimension_with_no_fte_zeros_if_heatmap_selected = filtered_dimension(dimension, function(row) {
return row.FTE || heatMap.filters().length === 0;
});
detailedTable = dc.dataTable('.detailedTable')
.dimension(dimension_with_no_fte_zeros_if_heatmap_selected)
您不需要点击处理程序 - 那太低级了 - 而且您没有聚合任何东西,只是过滤。
关于javascript - heatMap boxOnClick时从dataTable中过滤掉0s的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54770841/
我是一名优秀的程序员,十分优秀!