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. Extensions can be found in the GoJS kit under the extensions
(for loading via script tags),extensionsTS
(UMD modules), or extensionsJSM
(ES6 modules) folders. See the Extensions intro page for more information.
Constructs a FishboneLayout and sets the following properties:
Add a direction property to each vertex and modify TreeVertex.layerSpacing.
This override stops links from being committed since the work is done by the FishboneLink class.
Assigns Link.fromSpots and Link.toSpots based on branching and angle and moves vertexes based on dummy locations.
Create and initialize a LayoutNetwork with the given nodes and links. This override creates dummy vertexes, when necessary, to allow for proper positioning within the fishbone.
Shifts subtrees within the fishbone based on angle and node spacing.
Shifts a subtree.
FishboneLayout is a custom Layout derived from TreeLayout for creating "fishbone" diagrams. A fishbone diagram also requires a Link class that implements custom routing, FishboneLink.
This only works for angle === 0 or angle === 180.
This layout assumes Links are automatically routed in the way needed by fishbone diagrams, by using the FishboneLink class instead of go.Link.
If you want to experiment with this extension, try the Fishbone Layout sample.