Implements a one-way graph layout algorithm.
Namespace: MindFusion.Diagramming.Layout
Assembly: MindFusion.Diagramming.Layout
SyntaxC#
Copy Code
|
|---|
public class OneWayLayout : Layout |
Visual Basic
Copy Code
|
|---|
Public Class OneWayLayout |
RemarksThe one-way layout ensures that links enter into nodes from the same general direction and exit them from the opposite side. If the graph contains cycles, some links bend around the nodes to keep the enter/exit direction consistent. The algorithm aims to minimize the number of such links.
Inheritance HierarchySystem.Object![]()
System.MarshalByRefObject![]()
System.ComponentModel.Component![]()
MindFusion.Diagramming.Layout.Layout
MindFusion.Diagramming.Layout.OneWayLayout
See Also