Yes, class = "" is the correct answer. The comment field is invalid.
In the following example, you can see how to define a class for an edge (foo), for a node (bar), or even a subgraph (sub-foobar). And itβs even better. Each entity type is also a class, so you can, for example, hide all clusters or all edges.
digraph simple { c [class="bar"] a -> b [class="foo"] c -> b subgraph cluster_0 { class="sub-foobar"; d e } }


source share