我正在尝试动画删除树节点。当我在不同的树形图之间移动时,我似乎无法使转换工作正常。我目前有这样的代码
cell.exit()
.transition()
.duration(500)
.call(animateCellRemove)
.remove();
function animateCellRemove(selection) {
selection
.attr('scale', function(d) {
return "scale(" + d.dx/2 + "," + d.dy/2 +")";
});
}
有可能吗?我做错了吗?
答案 0 :(得分:1)
您的意思是selection.attr("transform", …)
吗?