如何更改箭头类型?
我想用 .dot 模拟无向图。为此,我希望箭头类型为“无”。我该如何设置这个?
"f" -> "t" [label=2],[arrowhead=none]
"m" -> "d" [label=0],[arrowhead=none]
上面的方法不起作用。
I want to simulate non-directional graphs with .dot. To that end, I want the arrowhead type to be "none". How do I set this?
"f" -> "t" [label=2],[arrowhead=none]
"m" -> "d" [label=0],[arrowhead=none]
The above is not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
例如:
For example:
另一种不错的方法是使用 'dir' 属性:
另请参阅 http://martin-loetzsch.de /DOTML/dir.html
Another nice way is to use the 'dir' attribute:
See also http://martin-loetzsch.de/DOTML/dir.html
您可以本地或全局更改箭头。
您可以在 GraphvizFiddle 上测试它,
可以找到所有可能的值此处
You can change the arrow head either locally or globally.
You can test it on GraphvizFiddle
All possible values could be found Here
如果您不必创建
digraph
,则可以使用graph
:digraph {
替换为 <代码>图表{。a -- b;
If you don't have to create a
digraph
, you can use agraph
:digraph {
on the top of your dot file bygraph {
.a -- b;
使用
headport
而不是arrowhead
。阅读点指南。Use
headport
instead ofarrowhead
. Read the dot guide.