如何允许 Graphviz 中的重叠边?

发布于 2024-12-27 15:41:06 字数 1052 浏览 1 评论 0原文

背景

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

问题

默认情况下 dot 创建以下图表:

默认输出

所需的输出将边缘组合在一起,以便它们通过肘部连接重叠:

Desired Output

源代码

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

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 的各种组合,但没有成功

Background

I'm using Graphviz to create an Organizational Chart.

Problem

By default dot creates the following diagram:

Default Output

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

Desired Output

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染墨丶若流云 2025-01-03 15:41:06

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

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

Creating "elbow-joint" edges is only possible by inserting invisible ("dummy") nodes.

See the answer to a similar question for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文