Last active
December 11, 2019 09:28
-
-
Save michiel/2e632cd50c435594cc44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// based on http://onais-m.blogspot.nl/2014/10/automatic-graph-layout-with-javascript.html | |
var jsp = jsPlumb.getInstance(); | |
// construct dagre graph from JsPlumb graph | |
/* global dagre */ | |
var g = new dagre.graphlib.Graph(); | |
g.setGraph({}); | |
g.setDefaultEdgeLabel(function() { return {}; }); | |
$('.xnode').each( | |
function(idx, node) { | |
var n = $(node); | |
g.setNode(n.attr('id'), { | |
width : Math.round(n.width()), | |
height : Math.round(n.height()) | |
}); | |
} | |
); | |
jsp.getAllConnections().forEach( | |
function(edge) { | |
g.setEdge( | |
edge.source.id, | |
edge.target.id | |
); | |
}); | |
// calculate the layout (i.e. node positions) | |
dagre.layout(g); | |
// Applying the calculated layout | |
g.nodes().forEach( | |
function(n) { | |
$('#' + n).css('left', g.node(n).x + 'px'); | |
$('#' + n).css('top', g.node(n).y + 'px'); | |
}); | |
jsp.repaintEverything(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dagre+jsPlumb+jquery,panzoom live demo here