Re: [jgrapht-users] [graphviz-interest] Subgraphs of subgraphs
Brought to you by:
barak_naveh,
perfecthash
From: Trevor H. <tr...@vo...> - 2007-05-29 15:59:17
|
On May 29, 2007, at 2:18 AM, pet...@ba... wrote: > I used nested subgraphs (clusters) with good success. If this is, > what you > want, just use: > > subgraph cluster_A { > label="Cluster A\n" > A_A -> A_B -> A_C > > subgraph cluster_B { > label="Cluster B\n" > B_A -> B_B > > } > } Ah, so that's how it works! I was trying to specify the clusters on the same scope and didn't even think about nesting them. Thanks for the tip! Trevor |