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
Context: this is for rendering networks of internet devices. Technically, our network graphs can be cyclic. But for the most part, they are trees w/ a few cycles.. Our network graphs are acyclic, and in fact, they are trees.
And so for the most part, we can render the graph like the screenshot
So what I'm asking for is how to create the layout for the screenshot.
In particular, this is a screenshot of a very large network (+300 nodes) rendered in a tight space.
So looking for ways to render a tree in a tight space with no overlapping edges.
Some more context: we're using another library to render the nodes. We're trying to use elkjs for the layout.
The text was updated successfully, but these errors were encountered:
I've been working on this kind of architecture layout as well. What I did is to use layered algorithm, and set partition indices for the nodes. Here is a demo you can refer to:
You can extend it horizontally by simply adding nodes/edges in a flat way because there is no nested hierarchy here.
Technically, our network graphs can be cyclic. But for the most part, they are trees w/ a few cycles.. Our network graphs are acyclic, and in fact, they are trees.The text was updated successfully, but these errors were encountered: