Search notes:

Graphviz - style attribute

The style attribute controls aspects of nodes, edges, clusters and subgraphs (clusters).
Recognized style types are
Comments N E C G
dashed
dotted
solid
invis Invisible (or hidden?)
bold
tapered
filled Necessary when fillColor is used
striped
wedged
diagonals
rounded
radial
digraph S {

   //
   // The value of the style attribute is a comma seperated
   // list of primitives with optional arguments (?).
   //

   solid  -> dashed    [ style=solid  label=solid  ];
   dashed -> dotted    [ style=dashed label=dashed ];
   dotted -> bold      [ style=dotted label=dotted ];
   bold   -> invis     [ style=bold   label=bold   ];
   solid  -> diagonals [ style=invis  label=invis  ];

   solid     [ style = solid     ];
   dashed    [ style = dashed    ];
   dotted    [ style = dotted    ];
   bold      [ style = bold      ];
   invis     [ style = invis     ];
   filled    [ style = filled    ];

   diagonals [ style = diagonals ];
   rounded   [ style = rounded   ];

 { rank=same solid dashed dotted bold  invis filled}
 { rank=same diagonals rounded }

}
Github repository about-Graphviz, path: /attributes/style/style.dot
The dot file produces:

See also

Graphviz attributes
Graphviz

Index