graphviz中框的宽度相等
equal widths for boxes in graphviz
是否可以让两个盒子和最宽的盒子一样宽
digraph G {
node[shape=box];
"A long description of a node" -> "short description";
}
将产生:
但我希望两个框的大小对齐。
您可以使用 width
和 height
参数控制框的(最小)尺寸:
digraph G {
node[shape=box, width = 2.5, height = .75 ];
"A long description of a node" -> "short description";
}
产量
是否可以让两个盒子和最宽的盒子一样宽
digraph G {
node[shape=box];
"A long description of a node" -> "short description";
}
将产生:
但我希望两个框的大小对齐。
您可以使用 width
和 height
参数控制框的(最小)尺寸:
digraph G {
node[shape=box, width = 2.5, height = .75 ];
"A long description of a node" -> "short description";
}
产量