digraph G { a -> b [ label = "foo" ]; a -> b [ label = "bar" ]; }
This will create two edges between the 'a' and 'b' nodes. Is there a way to have only one edge (group them)?
The "strict" keyword may help you.
strict digraph G { a -> b [ label = "foo" ]; a -> b [ label = "bar" ]; }
This will combine the edges. But I believe it will only apply the first label.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With