17

Is there any way to force graphviz to always draw the nodes above edges even if the edge is drawn over (or preferably under) the node?

So far I have tried ordering them and different layer options but not found a way that works.

Anders
  • 171
  • 1
  • 4

1 Answers1

14

You'll want to specify outputorder="edgesfirst". This can be found in the documentation.

ceving
  • 21,900
  • 13
  • 104
  • 178
Dan
  • 2,157
  • 20
  • 24
  • 3
    This didn't work for me. outputMode is the name of the parameter class. The name of the parameter is outputorder, so it's outputorder=edgesfirst. – mwhite Jul 11 '11 at 19:48