Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hidden edges in Graphviz

I'm trying to create a graph using Graphviz (complied with neato), and I would like to place nodes in specific locations. For this, I'm specifying exact edge lengths for all edges. However, I don't want all edges to be visible in the final image.

Do you know of any way to hide edges? I should mention that I tried coloring the edges white, but what happens is that I get white lines painted over the graph nodes - it's not very aesthetic...

like image 701
Dana Avatar asked Nov 12 '09 10:11

Dana


Video Answer


1 Answers

It can be done using

nodeA -> nodeB [style=invis] 
like image 124
spa Avatar answered Oct 05 '22 15:10

spa