在 Graphviz 中将簇放置在相同的等级上

发布于 2024-11-26 16:35:15 字数 545 浏览 0 评论 0原文

我希望这两个节点出现在同一级别:

在此处输入图像描述

digraph G {
    subgraph cluster1 {
        label="Local Datacenter";
        router1;
        host1;
    }
    subgraph cluster2 {
        label="Remote Datacenter";
        router2;
        host2;
    }
    router1 -> router2;
    router2 -> host2;
    router1 -> host1;
}

我尝试使用 rank=相同rank=min,但它们没有给我我需要的东西。

有趣的是,如果我设置rankdir=LR并注释掉两个路由器到主机的边缘,它就会给出我想要的外观 - 但我想保持边缘完好无损。

I would like these two nodes to appear on the same level:

enter image description here

digraph G {
    subgraph cluster1 {
        label="Local Datacenter";
        router1;
        host1;
    }
    subgraph cluster2 {
        label="Remote Datacenter";
        router2;
        host2;
    }
    router1 -> router2;
    router2 -> host2;
    router1 -> host1;
}

I have tried using rank=same and rank=min, but they aren't giving me what I need.

Interestingly, if I set rankdir=LR and comment out the two router-to-host edges, it gives me exactly the look I want - but I would like to leave the edges intact.

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

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

发布评论

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

评论(2

世界如花海般美丽 2024-12-03 16:35:15

您可以使用 newrank graph 属性(在 GraphViz 2.30 中添加)激活新的排名算法,该算法允许为属于集群的节点定义 rank=same

在顶部添加以下行:

newrank=true;

在集群定义之后添加以下行:

{ rank=same; router1; router2; }

这是生成的图表:

“具有相同等级的路由器”

You may use the newrank graph attribute (added in GraphViz 2.30) to activate the new ranking algorithm which allows defining rank=same for nodes which belong to clusters.

Add the following line at the top:

newrank=true;

Add the following line after the cluster definitions:

{ rank=same; router1; router2; }

Here's the resulting graph:

routers with same rank

九命猫 2024-12-03 16:35:15

您可以简单地修改路由器之间的边缘:

router1 -> router2[constraint=false];

constraint 指示是否应在节点排序中使用边。

You may simply modify the edge between the routers:

router1 -> router2[constraint=false];

constraint indicates whether the edge should be used in the ranking of the nodes.

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