views:

58

answers:

1

Is there a way to force any Graphviz tool (dot, neato,...) to accept some initial node placement and keep them in this position, while placing the remaining nodes using its standard algorithm ?

I have tried to play with the "pos" node attribute in Neato, without success.

Thanks in advance ! JCLL

+3  A: 

You can use

pos="x,y!"

The exclamation mark is important to do what you want !

greg
Thanks Greg ! That's the answer.I now see it in NEATO User’s Manual, April 26, 2004, page 9.
JCLL