We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As noted in https://stackoverflow.com/questions/2012036/graphviz-how-to-connect-subgraphs
It's necessary for compound graphs to have a compound=true property if clusters are to be connected.
compound=true
I would have thought this sufficient:
var digraph = new Graph({compound:true});
However, it's actually necessary to do this:
digraph.setGraph({compound:true})
Which is a little obscure.
Would it be possible to set this automatically if the graph is compound?
The text was updated successfully, but these errors were encountered:
ensuring compound:true is emitted, see dagrejs/graphlib-dot#43
495d85f
No branches or pull requests
As noted in https://stackoverflow.com/questions/2012036/graphviz-how-to-connect-subgraphs
It's necessary for compound graphs to have a
compound=true
property if clusters are to be connected.I would have thought this sufficient:
However, it's actually necessary to do this:
Which is a little obscure.
Would it be possible to set this automatically if the graph is compound?
The text was updated successfully, but these errors were encountered: