Comment #3 on issue 1017 by tu...@tudorgirba.com: RadialTreeLayout does not work properly http://code.google.com/p/moose-technology/issues/detail?id=1017
But, here is something even more fishy. When nested, RadialNarrowTreeLayout works in a funny way:
view := ROMondrianViewBuilder new. view node: #a forIt: [ view nodes: (1 to: 99). view edgesFrom: [ :x | x // 10 ]. view radialNarrowTreeLayout ]. view open
At the same time, the ragular TreeLayout works fine: view := ROMondrianViewBuilder new. view node: #a forIt: [ view nodes: (1 to: 99). view edgesFrom: [ :x | x // 10 ]. view treeLayout ]. view open