Background

Use graphviz to create an Organizational Chart.

Problem

By default dot creates the following diagram:

The desired output combines the edges so that they overlap, with elbow connections:

Source Code

The following source code generates the problematic diagram:

digraph G {
  splines = ortho;
  concentrate = true;

  node [shape="box", style="rounded", penwidth = 2];
  edge [color="#142b30", arrowhead="vee", penwidth = 2];

  {
    rank = same
    "1";
    "2";
    "3";
    "4";
  }

  "Main Node" -> "1";
  "Main Node" -> "2";
  "Main Node" -> "3";
  "Main Node" -> "4";

  {
    rank = same
    "5";
    "6";
    "7";
  }

  "1" -> "5";
  "1" -> "6";
  "1" -> "7";
}

Question

How can dot create orthogonal, elbow-joint edges in a Manhattan layout?

Ideas

I have tried various combinations of sametail and tailport to no avail.

Thank you!

link|improve this question

Off-topic: setlinewidth(2) in style is deprecated, to be replaced by the attribute penwidth=2. – marapet Jan 19 at 7:02
feedback

1 Answer

up vote 4 down vote accepted

As far as I know, creating "elbow-joint" edges is only possible by inserting invisible nodes.

link|improve this answer
Thank you. This was the conclusion I had recently reached. Do you know of a simple example that shows how to actually implement invisible nodes to get elbow-joints? – Dave Jarvis Jan 19 at 7:06
Dummy nodes are used in this answer: stackoverflow.com/questions/2901233/… – marapet Jan 19 at 7:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.