gpt4 book ai didi

javascript - heatMap boxOnClick时从dataTable中过滤掉0s的行

转载 作者:行者123 更新时间:2023-11-30 14:09:16 24 4
gpt4 key购买 nike

我想从我的数据表中过滤掉 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();
});
});

https://jsfiddle.net/_M_M_/fcjhxa16/19/

最佳答案

抱歉我的困惑 - 如果我这次没理解错的话,这完全是微不足道的,而且这是你想要“假维度”的罕见情况之一。

假维度将读取原始维度并根据谓词对其进行过滤。谓词会说“该行的 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)

您不需要点击处理程序 - 那太低级了 - 而且您没有聚合任何东西,只是过滤。

Fork of your fiddle .

关于javascript - heatMap boxOnClick时从dataTable中过滤掉0s的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54770841/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com