Graphviz4Net icon indicating copy to clipboard operation
Graphviz4Net copied to clipboard

Nested subgraphs are flattened

Open coder0xff opened this issue 8 years ago • 0 comments

A graph such as

digraph G {
	subgraph cluster_0 {
		subgraph cluster_1 {
			A;
			B;
			A -> B;
		}
	}
}

Does not preserve the subgraph hierarchy, instead making two subgraphs at the top level. DotSubGraph has no field for child subgraphs.

coder0xff avatar Jul 06 '17 15:07 coder0xff