我有一个我在 D3 中创建的可排序热图,如下所示:http: //bl.ocks.org/umcrcooke/5703304
当我点击年份(列)时,初始排序/转换效果很好,但随后的点击会出现,但没有转换。我在排除故障时遇到了困难。下面列出的转换代码:
我已将其设置为,当单击列文本时,更新功能会执行:
.on("click", function(d,i) { return d3.transition().each(update(d));});
更新功能的相关部分是:
function update(year) {
grid.selectAll('rect')
.transition()
.duration(2500)
.attr("y", function(d) { return (sortOrder[year].indexOf(d.Country))*cell.height; })
grid.selectAll(".cell_label")
.transition()
.duration(2500)
.attr("y", function(d) { return (sortOrder[year].indexOf(d.Country))*cell.height + (cell.height-cell.border)/2; })
d3.selectAll(".row_label")
.sort(function(a, b) {
return d3.ascending(+a[year], +b[year]);
})
.transition()
.duration(2500)
.attr("y", function(d, i) { return (i*cell.height) + (cell.height-cell.border)/2; });
}