我无法弄清楚如何改变边缘的尾部。
箭头没问题,例如这样可以正常使用
digraph foo {
x->y [arrowhead=odot]
}
但是因为我想改变尾巴,我试图颠倒方向:
digraph foo {
x->y [arrowhead=odot dir=back]
}
这不起作用,箭头返回默认样式。
同样,arrowtail属性似乎不起作用,我总是得到默认样式
digraph foo {
x->y [arrowtail=odot]
}