0π
.transition()
has its own event system, you can transition towards opacity: 0
and then .on("end", function() { d3.select(this).remove(); })
to remove the node only when itβs already invisible!
Source:stackexchange.com
0π
.transition()
has its own event system, you can transition towards opacity: 0
and then .on("end", function() { d3.select(this).remove(); })
to remove the node only when itβs already invisible!