mstefaniuk / graphviz.it

Graphviz fiddling website
http://graphviz.it
GNU Lesser General Public License v3.0
111 stars 12 forks source link

Mixed edges doesn't work #17

Closed awiebe closed 7 years ago

awiebe commented 7 years ago

Graphviz.it does not understand this, it only show one edge set

digraph G {

    A; B; C

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

    subgraph Rel2 {
        edge [color=blue]

        B -> C
        C -> A
    }

}
mstefaniuk commented 7 years ago

Fixed and published.