我有以下图表说明:
graph G {
{rank=same a b}
a[shape=point]
b[shape=point]
a -- b [label=e];
}
但是,它会输出没有标签的单个边缘(使用dot -Tpdf -o test.pdf test.dot
运行graphviz):
渲染到PNG会产生相同的结果。如果我将其渲染为PDF,然后寻找一个" e"在文档中,突出显示以下内容:
所以,边缘标签在这里,但它不可见。 令人惊讶的是,如果我改变排名方向,一切正常:
graph G {
rankdir=LR;
a[shape=point]
b[shape=point]
a -- b [label=e];
}