如何在graphviz中设置子图宽度?

时间:2019-04-17 13:01:09

标签: graphviz

我正在使用此图形绘制

digraph G {
  subgraph cluster_redisObject{
    style="rounded";
    bgcolor="#028d35";

    type [label="数据类型(Type)",style=rounded,shape=box];
    encoding [label="编码类型(Encoding)",style=rounded,shape=box]
  }
}

对象排列herizon,

enter image description here

如何按垂直线(上下)排列子图元素?

1 个答案:

答案 0 :(得分:1)

您可以简单地在这些节点之间添加不可见的边缘,例如:

type -> encoding [style = invis]