Attribute "labelloc"

Use:optional
Used by:cluster
Description:Top/bottom placement of cluster labels. If the attribute is "t", place label at the top; if the attribute is "b", place label at the bottom.
Values:"t", "b"
Default Value:t
Sponsored links:

Example 1/1:
Source code:
'
(graph ()
 
(cluster ((id "c1") (label "labelloc='t'") (labelloc "t"))
 
(node ((id "a1")))
(node ((id "b1")))
(node ((id "c1")))
(edge ((from "a1") (to "b1")))
(edge ((from "a1") (to "c1"))))
(cluster ((id "c2") (label "labelloc='b'") (labelloc "b"))
 
(node ((id "a2")))
(node ((id "b2")))
(node ((id "c2")))
(edge ((from "a2") (to "b2")))
(edge ((from "a2") (to "c2")))))
Sponsored links

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