Anyway to disable link animation only?

Currently I’m using {“animationManager.isEnabled”: false} to disable expanding animation
Is it anyway to disable only animation for link/line but animation still be enabled for node expanding?
Thanks

During animation any links that connect with moving nodes are continuously rerouted so that the connection between nodes is maintained visually

Are you asking to turn off that rerouting during animation? If so, that would cause potentially very large gaps in the connections between nodes. Links would appear to be disconnected. Those disconnects would presumably disappear at the end of the animation.

On the other hand, it would greatly improve the efficiency of the animation, so that would be one subtle positive for having such a jarring visual behavior.

Thanks for your answer Walter
So the link rerouting animation is essential for the code to maintain connection between node gaps
Thanks you made it clear for me Walter