【发布时间】:2015-01-28 08:43:18
【问题描述】:
节点属性 fixedsize=shape 似乎不适用于我的 GraphViz 图。例如,这个:
digraph Automaton {
rankdir=LR
node [shape=circle fixedsize=shape label=""]
0;
1 [shape=doublecircle];
2 [shape=doublecircle label="HELLO_12345"];
0 -> { 2 } [label="98 (b)"];
0 -> { 1 } [label="97 (a)"];
1 -> { 1 } [label="97 (a)"];
}
...产生这个:
我希望标记为 HELLO_12345 的节点被绘制成与其他节点相同的大小。我尝试在该节点的声明中添加fixedsize=shape,但无济于事。
fixedsize=shape 是什么时候添加的? GraphViz 的最新版本似乎是 2.38,但 Ubuntu 14.04 仍然是 2.36 版本。
【问题讨论】:
标签: graphviz