I want to simulate non-directional graphs with .dot. To that end, I want the arrowhead type to be "none". How do I set this?
"f" -> "t" [label=2],[arrowhead=none]
"m" -> "d" [label=0],[arrowhead=none]
The above is not working.
I want to simulate non-directional graphs with .dot. To that end, I want the arrowhead type to be "none". How do I set this?
"f" -> "t" [label=2],[arrowhead=none]
"m" -> "d" [label=0],[arrowhead=none]
The above is not working.
"f" -> "t" [label=2 arrowhead=none] "m" -> "d" [label=0 arrowhead=none]
Another nice way is to use the 'dir' attribute:
"f" -> "t" [label=2 dir=none]
"m" -> "d" [label=0 dir=none]
Replace 'digraph {' on the top line of your dot file with 'graph {'. Then, change your node relationships to: a -- b;