10

背景

我正在使用 Graphviz 创建组织结构图。

问题

默认情况下dot创建下图:

默认输出

所需的输出将边缘组合在一起,使它们重叠,并带有肘部连接:

期望的输出

源代码

以下源代码生成有问题的图表:

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";
}

问题

如何dot在曼哈顿布局中创建正交的肘关节边缘?

想法

我尝试了各种组合,sametailtailport无济于事。

4

1 回答 1

9

只能通过插入不可见(“虚拟”)节点来创建“肘关节”边缘。

有关详细信息,请参阅类似问题的答案。

于 2012-01-19T07:00:57.197 回答