Рассмотрим следующий код Graphviz:
digraph g1 {
compound = true;
node [shape = box, style=filled, fillcolor=Khaki] a;
subgraph sg1 {
node [shape = "", style="", fillcolor=""] b -> c;
graph [style=solid, penwidth=3];
}
}
это дает:
Почему я не получаю границу вокруг подграф / кластер?