Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for manual ranking #271

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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