I draw a simple graph as shown below and found different behavior of the color display.
digraph G {
concentrate=true
edge [dir=none]
a -> b [color=red]
b -> c
c -> b
b -> a
}
Graph show edge between a and b is red >> this one is correct.
But when I just change it to be
digraph G {
concentrate=true
edge [dir=none]
a -> b
b -> c
c -> b
b -> a [color=red]
}
This time the color of edge a and b is black not red color as I want. Could someone figure out what I do wrong here?