Dot / Graphviz中未连接的相交线

时间:2016-10-27 10:18:48

标签: graphviz dot

这可能是一个愚蠢的问题,但是可以在graphviz / dot中添加未附加的相交线吗?我目前正在尝试将信任边界添加到我的架构图中,我希望将其表示为与相关箭头相交的垂直虚线,就像这样(使用图形包敲击示例):

enter image description here

我在这里和网上搜索过,但无法找到答案。似乎Dot严格基于节点流,这可能有意义,但让我有一个问题!目前我将每个信任边界指定为一个盒装区域,但看起来不美观。

提前感谢您的意见。

1 个答案:

答案 0 :(得分:1)

digraph {
    boundary [shape=underline height=0 style=dashed color=orange label=""]
    a -> b
    b -> boundary [dir=none]
    boundary -> c -> d
}

给出

enter image description here