Attribute "sametail"

Use:optional
Used by:edge
Description: edges with the same tail node and the same sametail attribute value are aimed at the same point on the tail.
Values:any string
Default Value:""
Sponsored links:

Example 1/1:
Source code:
'
(graph ()
 
(node ((id "a1") (label "a")))
(node ((id "b1") (label "b")))
(node ((id "c1") (label "c")))
(node ((id "d1") (label "d")))
(node ((id "a2") (label "a")))
(node ((id "b2") (label "b")))
(node ((id "c2") (label "c")))
(node ((id "d2") (label "d")))
(edge ((from "a1") (to "b1") (sametail "a")))
(edge ((from "a1") (to "c1") (sametail "a")))
(edge ((from "a1") (to "d1") (sametail "a")))
(edge ((from "a2") (to "b2")))
(edge ((from "a2") (to "c2")))
(edge ((from "a2") (to "d2"))))
Sponsored links

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