Skip to content

Commit

Permalink
Allow manual ranking (from dagrejs#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emiliano Balbuena committed Dec 21, 2020
1 parent 76058e5 commit 2221d5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function updateInputGraph(inputGraph, layoutGraph) {
var graphNumAttrs = ["nodesep", "edgesep", "ranksep", "marginx", "marginy"];
var graphDefaults = { ranksep: 50, edgesep: 20, nodesep: 50, rankdir: "tb" };
var graphAttrs = ["acyclicer", "ranker", "rankdir", "align"];
var nodeNumAttrs = ["width", "height"];
var nodeNumAttrs = ["width", "height", "rank"];
var nodeDefaults = { width: 0, height: 0 };
var edgeNumAttrs = ["minlen", "weight", "width", "height", "labeloffset"];
var edgeDefaults = {
Expand Down
6 changes: 6 additions & 0 deletions lib/rank/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ module.exports = rank;
* fix them up later.
*/
function rank(g) {
var ranker = g.graph().ranker;
if (ranker instanceof Function) {
return ranker(g)
}

switch(g.graph().ranker) {
case "network-simplex": networkSimplexRanker(g); break;
case "tight-tree": tightTreeRanker(g); break;
case "longest-path": longestPathRanker(g); break;
case "none": break;
default: networkSimplexRanker(g);
}
}
Expand Down

0 comments on commit 2221d5d

Please sign in to comment.