Class ParallelLayout

GoJS® Diagramming Components
version 3.0.0
by Northwoods Software®

This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. See the Extensions intro page for more information.

Hierarchy

A custom go.TreeLayout that can be used for laying out stylized flowcharts. Each layout requires a single 'Split' node and a single 'Merge' node. The 'Split' node should be the root of a tree-like structure if one excludes links to the 'Merge' node. This will position the 'Merge' node to line up with the 'Split' node.

You can set all of the TreeLayout properties that you like, except that for simplicity this code just works for angle === 0 or angle === 90.

If you want to experiment with this extension, try the Parallel Layout sample.

Index

Accessors

Methods

Constructors

Accessors

  • This read-only property returns the node that the tree will converge at.

  • This read-only property returns the node that the tree will extend from.

Methods

  • Find a Split vertex and a Merge vertex for this layout. This signals an error if there is not exactly one vertex/Node that isSplit and exactly one vertex/Node that isMerge. This can be overridden; any override must set splitNode and mergeNode.

    Parameters

    Returns void

  • Overridable predicate for deciding if a Node is a conditional or 'If' type of Split Node expecting to have two links coming out of the sides.

    Parameters

    Returns boolean

  • Overridable predicate for deciding if a Node is a Merge node. By default this checks the node's go.Part.category to see if it is 'Merge', 'End', 'EndFor', 'EndWhile', 'EndIf', or 'EndSwitch'.

    Parameters

    Returns boolean

  • Overridable predicate for deciding if a Node is a Split node. By default this checks the node's go.Part.category to see if it is 'Split', 'Start', 'For', 'While', 'If', or 'Switch'.

    Parameters

    Returns boolean

  • Overridable predicate for deciding if a Node is a 'Switch' type of Split Node expecting to have three links coming out of the bottom/right side.

    Parameters

    Returns boolean