Implements a grid graph layout algorithm.
Namespace: MindFusion.Diagramming.Layout
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public class GridLayout : Layout |
Visual Basic
Copy Code
|
|---|
Public Class GridLayout |
RemarksGridLayout arranges diagram nodes in a grid, keeping connected nodes close together. The algorithm strives to achieve a small number of link crossings. It is based on an iterative process whose initial steps shuffle the grid nodes randomly. That can lead to very different results each time the algorithm is run.
Inheritance HierarchySystem.Object![]()
MindFusion.Diagramming.Layout.Layout
MindFusion.Diagramming.Layout.GridLayout
See Also