Attribute "lhead"

Use:optional
Used by:edge
Description:Logical head of an edge. The value must be the id of a cluster containing the real head. The edge is then clipped to the boundary of the cluster
Values:id of a cluster
Default Value:""
Sponsored links:

Example 1/1:
Source code:
'
(graph ()
 
(node ((id "a")))
(cluster ((id "c1") (label "cluster c1"))
 
(cluster ((id "c2") (label "cluster c2"))
 
(node ((id "b")))))
(edge ((from "a") (to "b") (lhead "c1") (label "lhead='c1'")))
(edge ((from "a") (to "b") (lhead "c2") (label "lhead='c2'")))
(edge ((from "a") (to "b"))))
Sponsored links

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