You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a very minor modification, it's possible to drag nodes to anywhere in the chart -- is there a way that connecting lines could be redrawn after moving a node to a random position (it's probably a big ask!).
The text was updated successfully, but these errors were encountered:
conststate=chart.getState();constwrapper=state.connectionsWrapper;constconnections=wrapper.selectAll('.connection')// Then plug following code into drag eventconnections.attr("d",(d)=>{return`customly positioned path taking the linked sample into account`});
Apologies for the lack of response... I've been switched to focus on other matters, but thanks for the tip. I'll give it a go when I get chance. Cheers
I've used the Drag and Drop community sample (https://stackblitz.com/edit/js-bmyjfc?file=index.html) to enable re-organisation of the chart and it's working well.
Using a very minor modification, it's possible to drag nodes to anywhere in the chart -- is there a way that connecting lines could be redrawn after moving a node to a random position (it's probably a big ask!).
The text was updated successfully, but these errors were encountered: