Single node layout

Hi, I’m playing with TreeLayout example, and would like to change the position of my rectangle (single instance of this rectangle in myDiagram), from this:


to this:

How I can achieve this?
Thanks an advance

Is moving such a child node always limited to those of “last parents” that have an alternate angle? I.e. nodes that have children but no grandchildren?

If so, then the easiest solution is to define a custom TreeLayout class that overrides LayoutNodes to call the base method and then just move those special nodes to where you want them to be, next to their respective parents. As long as you are only dealing with “last parents”, there should always be room there.