Attribute "ranksep"

Use:optional
Used by:graph
Description:The gives desired rank separation, in inches. This is the minimum vertical distance between the bottom of the nodes in one rank and the tops of nodes in the next.
Values:0.02 .. 1000.0
Default Value:0.5
Sponsored links:

Example 1/2:
Source code:
'
(graph ((ranksep "1.0") (label "ranksep='1.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"))))
Example 2/2:
Source code:
'
(graph ((ranksep "0.3") (label "ranksep='0.3'"))
 
(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.