Reputation: 1800
Is it possible to have nested shapes on Graphviz?
I would like to have a diamond inside a square, like the image bellow:
Upvotes: 2
Views: 828
Reputation: 1800
I got a solution:
subgraph cluster_1 {
margin = 1;
label = "";
associative_entity [shape = diamond, height = 1];
}
Upvotes: 2