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
Just got a similar situation, found a solution from other issue.
Add the config when create the graph var graph = new dagreD3.graphlib.Graph({ multigraph: true });
Add a name identifier when set the edge graph.setEdge('A', 'B', 'Label', 'edge1') or graph.setEdge('A', 'B', {label: 'Label'}, 'edge2')
Is it possible to make a 2-line (or more) connection in same direction from A to B using dagre-d3? Thanks.
The text was updated successfully, but these errors were encountered: