This repository was archived by the owner on Jul 26, 2026. It is now read-only.
Replies: 1 comment
|
This would also have a nice side-effect: For larger graphs the layout calculation is currently a bottleneck (see benchmark) where is could take several seconds to calculate it. By having the layout persistent, this heavy calculation would only need to be done once |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The dagre layout is good to get a first hierarchical layout calculated. However, I found myself move nodes around to get a better understanding of the structure. Since the layout is not getting persistent at the moment, the next time I open the diagram, the default dagre layout is used.
Therefore, it might be nice to store the node positions for a custom layout.
All reactions