Search
CompositeLayout.SubtreeLayout Property
See Also
 





Gets or sets a layout that should be applied to subgraphs representing trees.

Namespace: MindFusion.Diagramming.Layout
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public Layout SubtreeLayout { get; set; }

Visual Basic  Copy Code

Public Property SubtreeLayout As Layout

 Property Value

An instance of Layout-derived class. The default is radial TreeLayout.

 Remarks

The trees isolated by the automatic partitioning methods are undirected, hence when using a custom tree layout you should use settings that ignore the direction of links. Alternatively, use custom partitioning to ensure subgraphs are directed trees, i.e. the links in paths from the root to each node follow the same direction.

 See Also