type: style, default: ""
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 override 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.
© 2025 The Graphviz Authors
Licensed under the Eclipse Public License 1.0.
https://www.graphviz.org/docs/attrs/style/