Policy to determine whether and how the GraphModelManager should nest the render tree elements of nodes and edges if the graph is grouped.
Members
No filters for this type
Constants
Only the render tree elements of group nodes are nested according to their depth in the node hierarchy.
Only the render tree elements of group nodes are nested according to their depth in the node hierarchy.
All leaf nodes are top-level in the nodeGroup.
All edges are top-level in edgeGroup.
Group nodes are combined by their hierarchical depth (i.e. the number of their ancestor nodes). For all nodes having the same hierarchical depth, an IRenderTreeGroup is added to the groupNodeGroup.
static
See Also
Developer's Guide
The render tree elements of nodes are nested according to their location in the node hierarchy.
The render tree elements of nodes are nested according to their location in the node hierarchy.
All nodes are visualized in a more complicated nesting of dynamically created IRenderTreeGroups whose root group is the nodeGroup. All edges are top-level in edgeGroup.
static
See Also
Developer's Guide
The render tree elements of nodes and edges are nested according to their location in the node hierarchy.
The render tree elements of nodes and edges are nested according to their location in the node hierarchy.
All nodes and edges are visualized in a more complicated nesting of dynamically created IRenderTreeGroups whose root group is the nodeGroup.
static
See Also
Developer's Guide
The render tree elements of nodes and edges are not nested.
The render tree elements of nodes and edges are not nested.
The render tree elements of nodes are top-level in nodeGroup while the render tree elements of edges are top-level in edgeGroup.
static
See Also
Developer's Guide
Static Methods
Converts the given argument to an enum constant of this enum type.
Converts the given argument to an enum constant of this enum type.
Most notably, this method can convert an enum constant's name into the enum constant itself.
static
Parameters
- value: HierarchicalNestingPolicy
- The value to convert to an enum constant.
Return Value
- HierarchicalNestingPolicy
- The enum constant that corresponds to the given argument.
Returns the name of the given enum constant.
Returns the name of the given enum constant.
static
Parameters
- value: HierarchicalNestingPolicy
- The numeric value of an enum constant.
Return Value
- 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.