Open agtenr opened 1 year ago
Hi, I think you can receive it in zoomEnd
handler, let me know if it works
Where can I access this. I'm using it in react/typescript, and the OrgChart does not have a onZoomEnd prop.
You can access it using
chart.onZoomEnd(event=>console.log('event'))
This was added from v3, so make sure you are using the latest version and have a look at breaking changes too
Awesome, got it. Thank for the quick response
Hi,
Is there an option to expose the 'mouseup' event. currently I can see that the mousedown event is exposed on the zoomBehavior of the chart state. I would like to update the cursor based on the mousedown and mouseup event (grab and grabbing). Is this possible?
I tried registering my own mouseup event on the svg, but this seems to be prevented;
Any ideas?