标签: graphviz dot
是否可以让两个盒子与最宽的盒子一样宽。
digraph G { node[shape=box]; "A long description of a node" -> "short description"; }
将产生:
但我希望两个盒子的大小对齐。
答案 0 :(得分:4)
您可以使用width和height参数控制框的(最小)尺寸:
width
height
digraph G { node[shape=box, width = 2.5, height = .75 ]; "A long description of a node" -> "short description"; }
产量