使用 x->y->z 表示法指定关系时如何添加标签?
当您使用以下格式指定图形时,是否可以添加单独的标签?
digraph {
1 -> 2 -> 3 -> 1
}
Is there a way to add individual labels when you specify a graph using the following format?
digraph {
1 -> 2 -> 3 -> 1
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你指的是节点上的标签,可以这样做:
如果你想标记边缘,你必须像这样分割它们:
你不能做类似
1 -> 的原因2 [标签=“x”]-> 3 [label="y"]...
可以在 点规范< /a>:每个
edge_stmt
只能有一个attr_list
。If you mean labels on nodes, it can be done like this:
If you want to label the edges, you have to split them up like this:
The reason you cannot do something like
1 -> 2 [label="x"] -> 3 [label="y"]...
can be found in the dot specification:Each
edge_stmt
can have only oneattr_list
.