Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Graphviz, how do I align an edge to the top center of a node?

Tags:

graphviz

dot

In Graphviz / dot, is it possible to get the edge to connect exactly in the top center of a node? Reading the dot guide, I thought tailport and headport would help me, but adding those make no difference and sometimes get me weirder results.

This is what I'm getting:

sample graph

And this is what I'm looking for:

wanted results

The code I used to get the (incorrect) graph is:

digraph G {

  graph [splines = ortho];
  node [shape = box];
  edge [dir = none];

  {
    rank = same

    A
    AB [shape = point]
    B

    A -> AB
    AB -> B
  }

  {
    rank = same
    point1 [shape = point]
    point2 [shape = point]
    point3 [shape = point]
  }

  AB -> point1

  // The following section if to make the nodes appear in 
  // the correct order, not sure if there's a better way
  {
    edge [style = invisible]
    rank = same
    C
    D
    E
    F
    C -> D
    D -> E
  }

  point2 -> point1
  point2 -> C
  point1 -> point3
  point3 -> E
  point1 -> D

}
like image 696
Vinicius Pinto Avatar asked Dec 16 '14 12:12

Vinicius Pinto


2 Answers

Notes

  1. splines=ortho doesn't support tailport or headport (see: "Graphviz Issue Tracker - 0002142: ortho plots do not respect ports. also arrowheads seem to go the wrong way.")
  2. You can use hidden nodes, but don't use them on the lateral nodes (like C or F on the example below)

Image

Result

Code

This code works even with more than 3 child nodes and it's compatible with Graphviz 2.38. Useful for Org Chart (even if it's not perfect if you have many levels - I'm still try to reduce asymmetries).

 graph {
    splines=ortho;
    {0, 1, 2, 3 [width=0, shape=point, style=invis];}
    {rank=same; 1 -- 2 -- 3;}
    0 -- 2;
    node [shape=box];
    {rank=same; A -- 0 -- B;}
    1 -- C;
    1 -- D;
    3 -- E;
    3 -- F;
}
like image 100
Francesco Frassinelli Avatar answered Sep 28 '22 02:09

Francesco Frassinelli


Turns out the most recent (2.38) version isn't working properly in Mac OS X Yosemite, I had to downgrade to 2.36 as noted in the download page.

like image 44
Vinicius Pinto Avatar answered Sep 28 '22 00:09

Vinicius Pinto