--- trunk/lib/Frey/Class/Graph.pm 2009/06/04 20:30:24 1079 +++ trunk/lib/Frey/Class/Graph.pm 2009/06/04 20:45:28 1080 @@ -90,6 +90,12 @@ isa => 'Bool', ); +has no_overlap => ( + documentation => 'avoid overlaping nodes', + is => 'rw', + isa => 'Bool', +); + has produce_dot => ( documentation => 'dump .dot text format', is => 'rw', @@ -109,7 +115,7 @@ # layout => 'neato', # grabs too much memory # layout => 'twopi', # grabs too much memory # overlap => 'compress', - no_overlap => 1, + no_overlap => $self->no_overlap, node => { shape => 'box',