d3 / d3-transition

Animated transitions for D3 selections.
https://d3js.org/d3-transition
ISC License
224 stars 65 forks source link

transition.cancel? #32

Closed mbostock closed 8 years ago

mbostock commented 8 years ago

We have a way of interrupting and cancelling all transitions on a given selection, but what about just cancelling a single transition? It would just stop the timer and remove it from the pending list for the selected elements. (And, if the transition were active, maybe it would interrupt?)

mbostock commented 8 years ago

I put an implementation in the cancel branch, but I’m going to hold off on adding this feature unless there’s a good demonstration of when it’s needed.