Graphviz Labeljust无法将文本向左对齐

时间:2019-01-09 01:59:24

标签: graphviz dot

我想使用labeljust = l将标签对准节点n的左侧。但是,它不起作用。

digraph test {
    labeljust = l;
    node [shape = record]
    n [label="{aaa|bbbbbbb|ccc}"]
}

我希望应该是:

每行使用\l很不方便,所以我想使用labeljust。如何使其工作?非常感谢!

1 个答案:

答案 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>

  >];

}

enter image description here