Attribute "arrowhead"

Use:optional
Used by:edge
Description:Style of arrowhead on the head of an edge.
Values:"normal", "inv", "dot", "invdot", "odot", "invodot", "none", "tee", "empty", "invempty", "diamond", "odiamond", "box", "obox", "open", "crow", "halfopen"
Default Value:normal
Sponsored links:

Example 1/1:
Source code:
'
(graph ((rankdir "LR") (ranksep "0.7"))
 
(record ((fontsize "16") (color "#DDDDDD"))
 
(node ((id "h_normal") (label "normal")))
(node ((id "h_inv") (label "inv")))
(node ((id "h_dot") (label "dot")))
(node ((id "h_invdot") (label "invdot")))
(node ((id "h_odot") (label "odot")))
(node ((id "h_invodot") (label "invodot")))
(node ((id "h_none") (label "none")))
(node ((id "h_tee") (label "tee")))
(node ((id "h_empty") (label "empty")))
(node ((id "h_invempty") (label "invempty")))
(node ((id "h_diamond") (label "diamond")))
(node ((id "h_odiamond") (label "odiamond")))
(node ((id "h_box") (label "box")))
(node ((id "h_obox") (label "obox")))
(node ((id "h_open") (label "open")))
(node ((id "h_crow") (label "crow")))
(node ((id "h_halfopen") (label "halfopen"))))
(node ((shape "point") (id "t_normal")))
(node ((shape "point") (id "t_inv")))
(node ((shape "point") (id "t_dot")))
(node ((shape "point") (id "t_invdot")))
(node ((shape "point") (id "t_odot")))
(node ((shape "point") (id "t_invodot")))
(node ((shape "point") (id "t_none")))
(node ((shape "point") (id "t_tee")))
(node ((shape "point") (id "t_empty")))
(node ((shape "point") (id "t_invempty")))
(node ((shape "point") (id "t_diamond")))
(node ((shape "point") (id "t_odiamond")))
(node ((shape "point") (id "t_box")))
(node ((shape "point") (id "t_obox")))
(node ((shape "point") (id "t_open")))
(node ((shape "point") (id "t_crow")))
(node ((shape "point") (id "t_halfopen")))
(edge ((arrowhead "normal") (from "t_normal") (to "h_normal")))
(edge ((arrowhead "inv") (from "t_inv") (to "h_inv")))
(edge ((arrowhead "dot") (from "t_dot") (to "h_dot")))
(edge ((arrowhead "invdot") (from "t_invdot") (to "h_invdot")))
(edge ((arrowhead "odot") (from "t_odot") (to "h_odot")))
(edge ((arrowhead "invodot") (from "t_invodot") (to "h_invodot")))
(edge ((arrowhead "none") (from "t_none") (to "h_none")))
(edge ((arrowhead "tee") (from "t_tee") (to "h_tee")))
(edge ((arrowhead "empty") (from "t_empty") (to "h_empty")))
(edge ((arrowhead "invempty") (from "t_invempty") (to "h_invempty")))
(edge ((arrowhead "diamond") (from "t_diamond") (to "h_diamond")))
(edge ((arrowhead "odiamond") (from "t_odiamond") (to "h_odiamond")))
(edge ((arrowhead "box") (from "t_box") (to "h_box")))
(edge ((arrowhead "obox") (from "t_obox") (to "h_obox")))
(edge ((arrowhead "open") (from "t_open") (to "h_open")))
(edge ((arrowhead "crow") (from "t_crow") (to "h_crow")))
(edge ((arrowhead "halfopen") (from "t_halfopen") (to "h_halfopen"))))
Sponsored links

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