Attribute "labeljust"

Use:optional
Used by:cluster
Description:Justification for cluster labels. If the attribute is "r", the label is right-justified within bounding rectangle; otherwise, left-justified.
Values:"l", "r"
Default Value:l
Sponsored links:

Example 1/1:
Source code:
'
(graph ()
 
(cluster ((id "c1") (label "labeljust='r'") (labeljust "r"))
 
(node ((id "a1")))
(node ((id "b1")))
(node ((id "c1")))
(edge ((from "a1") (to "b1")))
(edge ((from "a1") (to "c1"))))
(cluster ((id "c2") (label "labeljust='l'") (labeljust "l"))
 
(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.