d3 / d3-transition

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

Transition throwing 'too late' error in react #63

Closed noahehall closed 7 years ago

noahehall commented 7 years ago

playing around with transitions for a udacity project, and i started getting these 'too late' errors when overing over a bar chart

relavant code is here: https://github.com/noahehall/udacity-corporate-dashboard/blob/piecharts/src/components/charts/examples.js#L155

error im getting: screen shot 2016-12-15 at 9 00 42 am

linking to this in codebase: screen shot 2016-12-15 at 9 02 10 am

mbostock commented 7 years ago

This means you are trying to modify a transition that has already started, or derive a transition from one that has ended. Please read the API Reference section on transition life cycles.

noahehall commented 7 years ago

thanks @mbostock