我想使用labeljust = l
将标签对准节点n
的左侧。但是,它不起作用。
digraph test {
labeljust = l;
node [shape = record]
n [label="{aaa|bbbbbbb|ccc}"]
}
我希望应该是:
每行使用\l
很不方便,所以我想使用labeljust
。如何使其工作?非常感谢!
答案 0 :(得分:0)
如果您不介意,可以使用HTML-like-labels
您想要的可以实现如下:
digraph H {
aHtmlTable [
shape=plaintext
color=blue // The color of the border of the table
label=<
<table border="1" cellborder="1" cellspacing="0">
<tr><td align="left">col 1</td></tr>
<tr><td align="left">COL 2</td></tr>
</table>
>];
}