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
Google Chrome: Version 127.0.6533.120 (Official Build) (arm64)
Description
In 0.6.0, the force-directed layout seems messier than before. The edges cross over each other and the initial layout that's rendered in the graph view looks more cluttered and harder to interpret.
This is even worse when we visualize larger graphs. There are a lot of criss-crossing edges.
This wasn't happening in earlier versions. See an earlier example of a clean force-directed layout, where the edges don't appear criss-crossed on top of each other:
Is this happening because we aren't running enough iterations for the force-directed algorithm to converge to a better layout?
Steps to reproduce
The graph used to reproduce can be obtained from the attachment in #215.
The following query can be run to test:
// Find all possible paths in an undirected manner between George and Edward with a maximum length of 5MATCH (p1:Person)-[r*1..5]-(p2:Person)
WHEREp1.name="George"ANDp2.name="Edward"RETURN*;
The text was updated successfully, but these errors were encountered:
We have switched to use force2 layout of G6 and it looks fine for most of the cases. I am closing this for now. Feel free to reopen it if there is other layouting issues.
Kùzu version
0.6.0
Operating System
macOS Sonoma 14.5
Browser
Google Chrome: Version 127.0.6533.120 (Official Build) (arm64)
Description
In 0.6.0, the force-directed layout seems messier than before. The edges cross over each other and the initial layout that's rendered in the graph view looks more cluttered and harder to interpret.
This is even worse when we visualize larger graphs. There are a lot of criss-crossing edges.
This wasn't happening in earlier versions. See an earlier example of a clean force-directed layout, where the edges don't appear criss-crossed on top of each other:
Is this happening because we aren't running enough iterations for the force-directed algorithm to converge to a better layout?
Steps to reproduce
The graph used to reproduce can be obtained from the attachment in #215.
The following query can be run to test:
The text was updated successfully, but these errors were encountered: