Line | |
---|
1 |
|
---|
2 | namespace Netron.Diagramming.Core {
|
---|
3 | /// <summary>
|
---|
4 | /// The layout algorithms you can use to lay out a diagram
|
---|
5 | /// </summary>
|
---|
6 | public enum LayoutType {
|
---|
7 | /// <summary>
|
---|
8 | /// A layout based on embedding physical forces like springs and gravitation in the diagram.
|
---|
9 | /// </summary>
|
---|
10 | ForceDirected,
|
---|
11 | /// <summary>
|
---|
12 | /// The Fruchterman-Rheingold layout algorithm.
|
---|
13 | /// </summary>
|
---|
14 | FruchtermanRheingold,
|
---|
15 | /// <summary>
|
---|
16 | /// Children are layed out in shells around the root node.
|
---|
17 | /// </summary>
|
---|
18 | RadialTree,
|
---|
19 | /// <summary>
|
---|
20 | /// Children are layed out in shells around the parent node.
|
---|
21 | /// </summary>
|
---|
22 | Balloon,
|
---|
23 | /// <summary>
|
---|
24 | /// The classic hierarchical layout of tree-like data.
|
---|
25 | /// </summary>
|
---|
26 | ClassicTree
|
---|
27 | }
|
---|
28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.