Graphviz Dot, mix directed and undirected

我与影子孤独终老i 提交于 2019-12-18 11:41:06

问题


For my application I need to represent simultaneously (on the same graph) two relations: one is simmetric, the other is not.

Targets:

  • Ideally the two relation should result in edges having different colors;
  • For the symmetric relation I would like not to have double-edges;

Is there a way of doing this with dot?


回答1:


digraph {

    A; B; C

    subgraph Rel1 {
        edge [dir=none, color=red]
        A -> B -> C -> A
    }

    subgraph Rel2 {
        edge [color=blue]

        B -> C
        C -> A
    }

}



来源:https://stackoverflow.com/questions/13236975/graphviz-dot-mix-directed-and-undirected

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!