如何在 graphviz 中强制节点位置(x 和 y)

发布于 2024-10-23 17:51:30 字数 84 浏览 2 评论 0原文

我正在尝试强制节点的位置。我有节点的 x 和 y 坐标及其有向图。我可以使用rank=same 来处理行(y 坐标),但无法弄清楚如何处理列(x 坐标)。

I am trying to force position of nodes. I have x and y coordinates of my nodes and its also directed graph. I can use the rank=same to handle row (y coordinate), but can't figure out how I can handle column (x coordinate).

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

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

发布评论

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

评论(3

绿萝 2024-10-30 17:51:30

您可以使用 pos 属性 (https:// www.graphviz.org/doc/info/attrs.html#d:pos),例如:

xxx [
    label = xxx
    pos = "0,0!"
]

yyy [
    label = yyy
    pos = "10,10!"
]

您还必须指定 neatofdp 布局引擎,这样 dot 命令行将是(对于 fdp):

dot -Kfdp -n -Tpng -o sample.png sample.dot

You can use pos attribute (https://www.graphviz.org/doc/info/attrs.html#d:pos), e.g.:

xxx [
    label = xxx
    pos = "0,0!"
]

yyy [
    label = yyy
    pos = "10,10!"
]

You will also have to specify neato or fdp layout engine, so that dot command-line would be (for fdp):

dot -Kfdp -n -Tpng -o sample.png sample.dot
不一样的天空 2024-10-30 17:51:30

这是我找到的一个例子:
https://observablehq.com/@magjac/placing-graphviz-nodes -in-fixed-positions

本质上可以为节点指定位置属性“pos”。仅适用于 neato 或 fdp 布局引擎,不适用于 dot。

! 表示该位置是输入,不应更改。

Here is an example I found:
https://observablehq.com/@magjac/placing-graphviz-nodes-in-fixed-positions

Essentially the position attribute "pos" can be specified for a node. Only works with neato or fdp layout engines, not dot.

The ! indicates that the position is an input and should not be altered.

天暗了我发光 2024-10-30 17:51:30

我无法让 -n 标志与 dot -Kfdp 一起使用。

然而,我可以使用以下命令让它与neato一起工作:

neatosample.dot -n -Tpng -osample.png

I couldn't get the -n flag work with dot -Kfdp.

I was however able to get it working with neato using the following command:

neato sample.dot -n -Tpng -o sample.png

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