style
type: style, default: ""
Set style information for components of the graph.
For cluster subgraphs, if style="filled"
, the cluster box’s background is
filled.
If the default style attribute has been set for a component, an individual
component can use style=""
to revert to the normal default. For example, if
the graph has
digraph {
edge [style="invis"]
a -> b
}
making all edges invisible, the b->c
edge can overrride this via:
digraph {
edge [style="invis"]
a -> b
b -> c [style=""]
}
Of course, the component can also explicitly set its style
attribute to the desired value.
- Clusters
- Edges
- Graphs
- Nodes
Last modified
June 14, 2021
: Augment all graphviz code samples with playground links (0c03dd3)