graphviz中框的宽度相等

时间:2016-06-04 09:57:18

标签: graphviz dot

是否可以让两个盒子与最宽的盒子一样宽。

digraph G {
        node[shape=box];
        "A long description of a node" -> "short description";
}

将产生:

enter image description here

但我希望两个盒子的大小对齐。

1 个答案:

答案 0 :(得分:4)

您可以使用widthheight参数控制框的(最小)尺寸:

digraph G {
        node[shape=box, width = 2.5, height = .75 ];
        "A long description of a node" -> "short description";
}

产量

enter image description here