是否可以在d3中转换树形图上节点的删除?

时间:2012-05-09 16:20:17

标签: javascript scale d3.js transitions treemap

我正在尝试动画删除树节点。当我在不同的树形图之间移动时,我似乎无法使转换工作正常。我目前有这样的代码

cell.exit()
  .transition()
    .duration(500)
    .call(animateCellRemove)
  .remove();

function animateCellRemove(selection) {
  selection
    .attr('scale', function(d) {
      return "scale(" + d.dx/2 + "," + d.dy/2 +")";
    });
}

有可能吗?我做错了吗?

1 个答案:

答案 0 :(得分:1)

您的意思是selection.attr("transform", …)吗?