Attribute "nodesep"

Use:optional
Used by:graph
Description:Minimum space between two adjacent nodes in the same rank, in inches.
Values:0.02 .. 1000.0
Default Value:0.25
Sponsored links:

Example 1/2:
Source code:
'
(graph ((nodesep "0.05") (label "nodesep='0.05'"))
 
(node ((id "a")))
(node ((id "b")))
(node ((id "c")))
(node ((id "d")))
(edge ((from "a") (to "b")))
(edge ((from "a") (to "c")))
(edge ((from "b") (to "c")))
(edge ((from "b") (to "d")))
(edge ((from "c") (to "d"))))
Example 2/2:
Source code:
'
(graph ((nodesep "2.0") (label "nodesep='2.0'"))
 
(node ((id "a")))
(node ((id "b")))
(node ((id "c")))
(node ((id "d")))
(edge ((from "a") (to "b")))
(edge ((from "a") (to "c")))
(edge ((from "b") (to "c")))
(edge ((from "b") (to "d")))
(edge ((from "c") (to "d"))))
Sponsored links

 Copyright 2006-2010 by Martin Loetzsch (http://martin-loetzsch.de), all rights reserved. See the S-Dot licence for details.