Defines the various strategies for assigning layers or circles in a RadialLayout.
Remarks
Type Details
- yFiles module
- algorithms
Constants
Uses breadth-first search (BFS) to determine a layering for the graph.
Remarks
See Also
Sample Graphs
Uses a dendrogram layering strategy.
Remarks
Leaf nodes in tree graphs or nodes without neighbors further away from the center in general graphs are placed on the outermost circle. Nodes on inner circles are moved as far away from the center as possible but are placed before their neighbors on the outer circles.
Dendrogram layering is recommended for tree graphs. Parallel edges and same-layer edges are supported rudimentary.
See Also
Sample Graphs
Uses an optimal hierarchical layering strategy to determine the layer assignment.
Remarks
See Also
Sample Graphs
Static Methods
Converts the given argument to an enum constant of this enum type.
Remarks
Parameters
A map of options to pass to the method.
- value - RadialLayeringStrategy
- The value to convert to an enum constant.
Returns
- ↪RadialLayeringStrategy
- The enum constant that corresponds to the given argument.
Returns the name of the given enum constant.
Parameters
A map of options to pass to the method.
- value - RadialLayeringStrategy
- The numeric value of an enum constant.
Returns
- ↪string
- The name of the enum constant.
Throws
- Exception({ name: 'Error' })
- If this type is a flags enums, and the provided value doesn't correspond to a single enum constant, or if this enum type contains no constant of the given numeric value.