Reputation: 38733
I am drawing a graphic using this:
digraph G {
subgraph cluster_redisObject{
style="rounded";
bgcolor="#028d35";
type [label="数据类型(Type)",style=rounded,shape=box];
encoding [label="编码类型(Encoding)",style=rounded,shape=box]
}
}
The object arrange herizon,
How to make subgraph element arrangement by verticle(up&down)?
Upvotes: 0
Views: 508
Reputation: 56466
You could simply add an invisible edge between those nodes, for example:
type -> encoding [style = invis]
Upvotes: 2