Patrick Wunderlin
Patrick Wunderlin
4 years after the original post, this is still an issue. Wake up and clean up this if you want developpers to be happy with your SDK.
Horrible fix would be to add this in the `_showStep: function(idx)` (line 332): ``` setTimeout(function() { window.scrollTo(0, 0); }, 1); ``` And don't forget to add this function on your...
React Portal is the way to go.
someone found a way to make it work with React18? as ReactDOM.render is not available anymore and downgrading to 1.4.3 is having the same issue I can't see a temporary...
@arcanedev-maroc Laravel 10 bump would be awesome
Same issue here. @scio-cypher you should use a ref for the mouse position and not a state. ```js const tooltipPosRef = useRef({x:0, y:0}); ``` and in your graph: ```js onMouseMove={(sliceData,...