如何在 graphviz 中强制节点位置(x 和 y)
我正在尝试强制节点的位置。我有节点的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 pos 属性 (https:// www.graphviz.org/doc/info/attrs.html#d:pos),例如:
您还必须指定
neato
或fdp
布局引擎,这样dot
命令行将是(对于 fdp):You can use pos attribute (https://www.graphviz.org/doc/info/attrs.html#d:pos), e.g.:
You will also have to specify
neato
orfdp
layout engine, so thatdot
command-line would be (for fdp):这是我找到的一个例子:
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.我无法让
-n
标志与dot -Kfdp
一起使用。然而,我可以使用以下命令让它与neato一起工作:
neatosample.dot -n -Tpng -osample.png
I couldn't get the
-n
flag work withdot -Kfdp
.I was however able to get it working with neato using the following command:
neato sample.dot -n -Tpng -o sample.png