E

MultiParentRoutingStyle

Specifies the routing styles for edges in a multi-parent structure.

Remarks

This enumeration specifies different styles for routing edges that connect to multi-parent nodes, with options for polyline, orthogonal, and straight-line routing.

Members

No filters for this type

Constants

Routing style for routing non-shared edge segments in an orthogonal fashion.
The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.
static

Sample Graphs

ShownSetting: Orthogonal routing of edge segments that don't share a common path

See Also

API
edgeRoutingStyle
Routing style for routing non-shared edge segments in a polyline fashion.
The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.
static

Sample Graphs

ShownSetting: Polyline routing of edge segments that don't share a common path

See Also

API
edgeRoutingStyle
Routing style for routing non-shared edge segments straight.

This style will route the part of the edges that doesn't share the same path directly from the center of the multi-parent to the common point of the edges in the multi-parent structure.

The edges connected to a multi-parent structure will share their paths until shortly above/below the multi-parent nodes. This style only applies to the part of the edges where they split to connect to different multi-parents.

static

Sample Graphs

ShownSetting: Straight-line routing of edge segments that don't share a common path

See Also

API
edgeRoutingStyle

Static Methods

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: MultiParentRoutingStyle
The value to convert to an enum constant.

Return Value

MultiParentRoutingStyle
The enum constant that corresponds to the given argument.
Returns the name of the given enum constant.
static

Parameters

value: MultiParentRoutingStyle
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.