增加Graphviz输出中的级别之间的差距

时间:2016-01-20 15:33:51

标签: graphviz

使用以下命令:

dot -Tpng so.dot -o so.png

显示的graphviz代码产生了进一步向下的(650x255)图像。我喜欢输出图像中有3个不同的水平等级,但我更喜欢这三个等级之间的高度差异增加;也许会产生更高的形象。有人可以帮忙吗?

digraph G {
  node [shape="circle"];
  1 -> { 2; 3; 4 }
  2 -> { 5; 6; 7 }
  3 -> { 8; 9; 10 }
  4 -> { 11; 12; 13 }
}

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试

dot -Tpng -Granksep=3.0 so.dot -o so.png

给出了

enter image description here

文档:http://soc.if.usp.br/manual/graphviz/html/info/attrs.html#a:ranksep