Implements a layered graph layout algorithm.
Namespace: MindFusion.Diagramming.Layout
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public class LayeredLayout : Layout |
Visual Basic
Copy Code
|
|---|
Public Class LayeredLayout |
RemarksThis algorithm assigns diagram nodes to distinct horizontal or vertical layers. While arranging the layers, the layout routine seeks to meet the following criteria: - connected nodes must be placed close together; - links must flow in one direction if possible; - links must cross as few layers as possible; - links must not cross other links;
Inheritance HierarchySystem.Object![]()
MindFusion.Diagramming.Layout.Layout
MindFusion.Diagramming.Layout.LayeredLayout
See Also