tags:

views:

79

answers:

1

Is there any way to get graphviz to left-align or right-align nodes in the same rank, instead of centering?

alt text

   digraph h {
     rankdir=LR;

     node [shape=record,height=.08,fontsize=11];

     elk[label="elk|I am an American Elk"];

     buffalo[label="buffalo|Just a buffalo|everywhere I go|people know the part I'm playing"];

     cow[label="cow|moo"];

     moose[label="Bullwinkle J. Moose|Hey Rocky, watch me pull a rabbit out of my hat!"];

     zoo [label="zoo|<p0>|<p1>|<p2>|<p3>"];

     zoo:p0 -> elk;
     zoo:p1 -> cow;
     zoo:p2 -> moose;
     zoo:p3 -> buffalo;
   }
+1  A: 

It's nice to see someone working with such weighty data.

Here's one kludgey and unsatisfying way:

digraph h {
     rankdir=LR;
     node [shape=record,height=.08,fontsize=11];
     zoo [label="zoo|<p0>|<p1>|<p2>|<p3>"];

     node [width=3.5];
     elk[label="elk\l|I am an American Elk\l",];
     buffalo[label="buffalo\l|Just a buffalo\l|everywhere I go\l|people know the part I'm playing\l"];
     cow[label="cow\l|moo\l"];
     moose[label="Bullwinkle J. Moose\l|Hey Rocky, watch me pull a rabbit out of my hat!\l"];

     zoo:p0->elk; zoo:p1 -> cow; zoo:p2 -> moose; zoo:p3 -> buffalo;
}

Give each box in that rank the same (empirically determined) width, then left-align the text using the weird \l "left-aligned linebreak".

Jonathan Feinberg
Jason S
(but +1 for the `\l` tip)
Jason S