Graphviz (DOT) 字幕
我需要使用 Graphviz DOT 打印大量图表。为了区分每个图对应的输入,我还想为每个图添加一个标题。无论如何,是否可以将其嵌入到图表的 DOT 表示中。
I need to print a large number of graphs using Graphviz DOT. To distinguish which input each graph corresponds to, I want to also have a caption for each graph. Is there anyway to embed this into the DOT representation of the graphs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
label
为图表添加标题。示例:
labelloc
和labeljust
可用于确定图形标签的上/下和左/右位置。可用于修改 graphviz 属性参考。
提示:定义点文件的图形标签末尾,否则子图将继承这些属性。
You can use
label
to add a caption to the graph.Example:
labelloc
andlabeljust
can be used to determine top/bottom and left/right position of the graph label.All the details and other attributes that can be used to modify the label (font etc) in the graphviz attribute reference.
Tip: Define the graph label end of your dot file, otherwise subgraphs will inherit those properties.
图的属性就像节点和边一样:
该点文件生成 此图。
Graph's can have attributes just like nodes and edges do:
That dot file produces this graph.
如果您正在寻找一种在 python 中向 graphviz 的 Graph 对象添加标题的方法。那么以下代码可以提供帮助:
输出:
If you are looking for a way to add a caption to a Graph object of graphviz in python. Then the following code can help:
Output: