Attribute "fixed-size"

Use:optional
Used by:node
Description:If true, the node size set by height and width is kept fixed and not expanded to contain the text label.

Note that fixedsize doesn't work for record nodes.
Values:true / false
Default Value:false
Sponsored links:

Example 1/1:
Source code:
'
(graph ()
 
(node ((id "fixedsize_false") (label "fixedsize='false'") (fixedsize "false") (height "0.2") (width "0.6")))
(node ((id "fixedsize_true") (label "fixedsize='true'") (fixedsize "true") (height "0.2") (width "0.6")))
(edge ((from "fixedsize_false") (to "fixedsize_true"))))
Sponsored links

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