Diagram TreeModel Layout

I have a Diagram that’s using a TreeModel where the tree may have multiple top-level nodes. The default appears to be that the trees are placed one above the other, but I would like to put the two trees side by side. I tried changing content alignments but this had no effect. Is there any way of having two trees in a TreeModel displayed next to each other horizontally instead of vertically?

Are you saying that you have a “forest”, with multiple trees?

If so, try setting TreeLayout Arrangement=“Horizontal”.
You can also set TreeLayout.ArrangementSpacing, to adjust the space between the trees.

Yes, that is what I was looking for! Thank you, Walter.