Reputation: 235
Created graph using cytoscape.js. I have set the layout to 'grid'. Need to resolve following problem: original graph-
There is edge from Host3 to Host1 as well as from Host5 to host1,Edge from Host 5 to Host 1 overlapping the edge from Host3 to Host1.
Overlapping edge should appear like:
How to do it? Thanks !
Upvotes: 7
Views: 3453
Reputation: 12250
That's a research problem in graph theory. You can
(1) use a different layout or parameters, or
(2) develop a layout with less overlap for your specific usecase, or
(3) invent and/or implement novel edge overlap avoidance algorithms.
Upvotes: 3