gojs
Version:
Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams
576 lines (575 loc) • 33.2 kB
HTML
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ArrangingLayout | GoJS API</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../../assets/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<!-- non-fixed navbar -->
<nav id="non-fixed-nav" class="navbar navbar-inverse navbar-top">
<div class="container-fluid">
<div class="navbar-header">
<div class="navheader-container">
<div class="navheader-collapse" data-toggle="collapse" data-target="#navbar">
<a id="toplogo" class="navbar-brand" href="../../index.html">GoJS</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="../../index.html">Home</a></li>
<li><a href="../../learn/index.html">Learn</a></li>
<li><a href="../../samples/index.html">Samples</a></li>
<li><a href="../../intro/index.html">Intro</a></li>
<li><a href="../../api/index.html" target="api">API</a></li>
<li><a href="https://www.nwoods.com/components/evalform.htm">Register</a></li>
<li><a href="../../download.html">Download</a></li>
<li><a href="https://forum.nwoods.com/c/gojs">Forum</a></li>
<li><a href="https://www.nwoods.com/contact.html" onclick="ga('send','event','Outbound Link','click','contact');">Contact</a></li>
<li class="buy"><a href="https://www.nwoods.com/sales/index.html" onclick="ga('send','event','Outbound Link','click','buy');">Buy</a></li>
<li class="activate"><a href="https://www.nwoods.com/app/activate.aspx?sku=gojs">Activate</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="tsd-page-header">
<div class="tsd-page-toolbar">
<div class="container-fluid plr15">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">GoJS API</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container-fluid plr15">
<div class="top-copyright">
<!--<b>GoJS</b>® Diagramming Components<br/>version <br/>version 2.1.27 for TypeScript/HTML<br/>by <a href="https://www.nwoods.com/">Northwoods Software®</a>-->
<b>GoJS</b>® Diagramming Components<br/>version 2.1.27<br/>by <a href="https://www.nwoods.com/">Northwoods Software®</a>
</div>
<div>
<h1>Class ArrangingLayout</h1>
</div>
</div>
</div>
</div>
</header>
<div class="container-fluid container-main plr15">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-extension">
<p>
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 <code>extensions</code> or <code>extensionsTS</code> folders.
See the <a href="../../intro/extensions.html">Extensions intro page</a> for more information.
</p>
</section>
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<a href="Layout.html" class="tsd-signature-type">Layout</a>
<ul class="tsd-hierarchy">
<li>
<span class="target">ArrangingLayout</span>
</li>
</ul>
</li>
</ul>
</section>
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography">
<p>A custom Layout that provides one way to have a layout of layouts.
It partitions nodes and links into separate subgraphs, applies a primary
layout to each subgraph, and then arranges those results by an
arranging layout. Any disconnected nodes are laid out later by a
side layout, by default in a grid underneath the main body of subgraphs.</p>
<p>If you want to experiment with this extension, try the <a href="../../extensionsTS/Arranging.html">Arranging Layout</a> sample.</p>
<p>This layout uses three separate Layouts.</p>
<p>One is used for laying out nodes and links that are connected together: <a href="ArrangingLayout.html#primaryLayout">primaryLayout</a>.
This defaults to null and must be set to an instance of a <a href="Layout.html">Layout</a>,
such as a <a href="TreeLayout.html">TreeLayout</a> or a <a href="ForceDirectedLayout.html">ForceDirectedLayout</a> or a custom Layout.</p>
<p>One is used to arrange separate subnetworks of the main graph: <a href="ArrangingLayout.html#arrangingLayout">arrangingLayout</a>.
This defaults to an instance of <a href="GridLayout.html">GridLayout</a>.</p>
<p>One is used for laying out the additional nodes along one of the sides of the main graph: <a href="ArrangingLayout.html#sideLayout">sideLayout</a>.
This also defaults to an instance of <a href="GridLayout.html">GridLayout</a>.
A filter predicate, <a href="ArrangingLayout.html#filter">filter</a>, splits up the collection of nodes and links into two subsets,
one for the main layout and one for the side layout.
By default, when there is no filter, it puts all nodes that have no link connections into the
subset to be processed by the side layout.</p>
<p>If all pairs of nodes in the main graph can be reached by some path of undirected links,
there are no separate subnetworks, so the <a href="ArrangingLayout.html#arrangingLayout">arrangingLayout</a> need not be used and
the <a href="ArrangingLayout.html#primaryLayout">primaryLayout</a> would apply to all of those nodes and links.</p>
<p>But if there are disconnected subnetworks, the <a href="ArrangingLayout.html#primaryLayout">primaryLayout</a> is applied to each subnetwork,
and then all of those results are arranged by the <a href="ArrangingLayout.html#arrangingLayout">arrangingLayout</a>.</p>
<p>In either case if there are any nodes in the side graph, those are arranged by the <a href="ArrangingLayout.html#sideLayout">sideLayout</a>
to be on the side of the arrangement of the main graph of nodes and links.</p>
<p>Note: if you do not want to have singleton nodes be arranged by <a href="ArrangingLayout.html#sideLayout">sideLayout</a>,
set <a href="ArrangingLayout.html#filter">filter</a> to <code>function(part) { return true; }</code>.
That will cause all singleton nodes to be arranged by <a href="ArrangingLayout.html#arrangingLayout">arrangingLayout</a> as if they
were each their own subgraph.</p>
<p>If you both don't want to use <a href="ArrangingLayout.html#sideLayout">sideLayout</a> and you don't want to use <a href="ArrangingLayout.html#arrangingLayout">arrangingLayout</a>
to lay out connected subgraphs, don't use this ArrangingLayout at all --
just use whatever Layout you would have assigned to <a href="ArrangingLayout.html#primaryLayout">primaryLayout</a>.</p>
</div>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Constructors</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-constructor tsd-parent-kind-class"><a href="ArrangingLayout.html#constructor" class="tsd-kind-icon">constructor</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#arrangingLayout" class="tsd-kind-icon">arranging<wbr>Layout</a></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#filter" class="tsd-kind-icon">filter</a></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#primaryLayout" class="tsd-kind-icon">primary<wbr>Layout</a></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#side" class="tsd-kind-icon">side</a></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#sideLayout" class="tsd-kind-icon">side<wbr>Layout</a></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="ArrangingLayout.html#spacing" class="tsd-kind-icon">spacing</a></li>
</ul>
</section>
<section class="tsd-index-section ">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class"><a href="ArrangingLayout.html#moveSideCollection" class="tsd-kind-icon">move<wbr>Side<wbr>Collection</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="ArrangingLayout.html#moveSubgraph" class="tsd-kind-icon">move<wbr>Subgraph</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="ArrangingLayout.html#preparePrimaryLayout" class="tsd-kind-icon">prepare<wbr>Primary<wbr>Layout</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="ArrangingLayout.html#prepareSideLayout" class="tsd-kind-icon">prepare<wbr>Side<wbr>Layout</a></li>
<li class="tsd-kind-method tsd-parent-kind-class"><a href="ArrangingLayout.html#splitParts" class="tsd-kind-icon">split<wbr>Parts</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Constructors</h2>
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class">
<a name="constructor" class="tsd-anchor"></a>
<h3>
constructor
</h3>
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">new <wbr>Arranging<wbr>Layout<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="ArrangingLayout.html" class="tsd-signature-type">ArrangingLayout</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <a href="ArrangingLayout.html" class="tsd-signature-type">ArrangingLayout</a></h4>
</li>
</ul>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="arrangingLayout" class="tsd-anchor"></a>
<h3>
arranging<wbr>Layout
<span class="tsd-signature-symbol">: </span><a href="Layout.html" class="tsd-signature-type">Layout</a> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the Layout used to arrange multiple separate connected subgraphs of the main graph.
The default value is an instance of GridLayout.
Set this property to null in order to get the default behavior of the @{link #primaryLayout}
when dealing with multiple connected graphs as a whole.</p>
</div>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="filter" class="tsd-anchor"></a>
<h3>
filter
<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">function</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">part</span><span class="tsd-signature-symbol">: </span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the predicate function to call on each non-Link.
If the predicate returns true, the part will be laid out by the main layouts,
the primaryLayouts and the arrangingLayout, otherwise by the sideLayout.
The default value is a function that is true when there are any links connecting with the node.
Such default behavior will have the sideLayout position all of the singleton nodes.</p>
</div>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="primaryLayout" class="tsd-anchor"></a>
<h3>
primary<wbr>Layout
<span class="tsd-signature-symbol">: </span><a href="Layout.html" class="tsd-signature-type">Layout</a> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the Layout used for the main part of the diagram.
The default value is an instance of GridLayout.
Any new value must not be null.</p>
</div>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="side" class="tsd-anchor"></a>
<h3>
side
<span class="tsd-signature-symbol">: </span><a href="Spot.html" class="tsd-signature-type">Spot</a> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the side <a href="Spot.html">Spot</a> where the side nodes and links should be laid out,
relative to the results of the main Layout.
The default value is Spot.BottomSide.
Currently only handles a single side.</p>
</div>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="sideLayout" class="tsd-anchor"></a>
<h3>
side<wbr>Layout
<span class="tsd-signature-symbol">: </span><a href="Layout.html" class="tsd-signature-type">Layout</a> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the Layout used to arrange the "side" nodes and links -- those outside of the main layout.
The default value is an instance of GridLayout.
Any new value must not be null.</p>
</div>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
<a name="spacing" class="tsd-anchor"></a>
<h3>
spacing
<span class="tsd-signature-symbol">: </span><a href="Size.html" class="tsd-signature-type">Size</a> </h3>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Gets or sets the space between the main layout and the side layout.
The default value is Size(20, 20).</p>
</div>
</li>
</ul>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="moveSideCollection" class="tsd-anchor"></a>
<h3>
move<wbr>Side<wbr>Collection
</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">move<wbr>Side<wbr>Collection<span class="tsd-signature-symbol">(</span>sidecoll<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span>, mainbounds<span class="tsd-signature-symbol">: </span><a href="Rect.html" class="tsd-signature-type">Rect</a>, sidebounds<span class="tsd-signature-symbol">: </span><a href="Rect.html" class="tsd-signature-type">Rect</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>This method is called just after the sideLayout has been performed in order to move
its parts to the desired area relative to the results of the main layouts.
By default this calls <a href="Diagram.html#moveParts">Diagram.moveParts</a> on the sidecoll collection to the <a href="ArrangingLayout.html#side">side</a> of the mainbounds.
This won't get called if there are no Parts in the sidecoll collection.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>sidecoll: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
<div class="tsd-comment tsd-typography">
<p>a collection of Parts that were laid out by the sideLayout</p>
</div>
</li>
<li>
<h5>mainbounds: <a href="Rect.html" class="tsd-signature-type">Rect</a></h5>
<div class="tsd-comment tsd-typography">
<p>the area occupied by the results of the main layouts</p>
</div>
</li>
<li>
<h5>sidebounds: <a href="Rect.html" class="tsd-signature-type">Rect</a></h5>
<div class="tsd-comment tsd-typography">
<p>the area occupied by the results of the sideLayout</p>
</div>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="moveSubgraph" class="tsd-anchor"></a>
<h3>
move<wbr>Subgraph
</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">move<wbr>Subgraph<span class="tsd-signature-symbol">(</span>subColl<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span>, subbounds<span class="tsd-signature-symbol">: </span><a href="Rect.html" class="tsd-signature-type">Rect</a>, bounds<span class="tsd-signature-symbol">: </span><a href="Rect.html" class="tsd-signature-type">Rect</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Move a Set of Nodes and Links to the given area.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>subColl: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
<div class="tsd-comment tsd-typography">
<p>the Set of Nodes and Links that form a separate connected subgraph</p>
</div>
</li>
<li>
<h5>subbounds: <a href="Rect.html" class="tsd-signature-type">Rect</a></h5>
<div class="tsd-comment tsd-typography">
<p>the area occupied by the subColl</p>
</div>
</li>
<li>
<h5>bounds: <a href="Rect.html" class="tsd-signature-type">Rect</a></h5>
<div class="tsd-comment tsd-typography">
<p>the area where they should be moved according to the arrangingLayout</p>
</div>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="preparePrimaryLayout" class="tsd-anchor"></a>
<h3>
prepare<wbr>Primary<wbr>Layout
</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">prepare<wbr>Primary<wbr>Layout<span class="tsd-signature-symbol">(</span>primaryLayout<span class="tsd-signature-symbol">: </span><a href="Layout.html" class="tsd-signature-type">Layout</a>, mainColl<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>This method is called just before the primaryLayout is performed so that
there can be adjustments made to the primaryLayout, if desired.
By default this method makes no adjustments to the primaryLayout.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>primaryLayout: <a href="Layout.html" class="tsd-signature-type">Layout</a></h5>
<div class="tsd-comment tsd-typography">
<p>the sideLayout that may be modified for the results of the primaryLayout</p>
</div>
</li>
<li>
<h5>mainColl: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
<div class="tsd-comment tsd-typography">
<p>the Nodes and Links to be laid out by primaryLayout after being separated into subnetworks</p>
</div>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="prepareSideLayout" class="tsd-anchor"></a>
<h3>
prepare<wbr>Side<wbr>Layout
</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">prepare<wbr>Side<wbr>Layout<span class="tsd-signature-symbol">(</span>sideLayout<span class="tsd-signature-symbol">: </span><a href="Layout.html" class="tsd-signature-type">Layout</a>, sideColl<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span>, mainBounds<span class="tsd-signature-symbol">: </span><a href="Rect.html" class="tsd-signature-type">Rect</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>This method is called just after the main layouts (the primaryLayouts and arrangingLayout)
have been performed and just before the sideLayout is performed so that there can be
adjustments made to the sideLayout, if desired.
By default this method makes no adjustments to the sideLayout.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>sideLayout: <a href="Layout.html" class="tsd-signature-type">Layout</a></h5>
<div class="tsd-comment tsd-typography">
<p>the sideLayout that may be modified for the results of the main layouts</p>
</div>
</li>
<li>
<h5>sideColl: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
<div class="tsd-comment tsd-typography">
<p>the Nodes and Links filtered out to be laid out by sideLayout</p>
</div>
</li>
<li>
<h5>mainBounds: <a href="Rect.html" class="tsd-signature-type">Rect</a></h5>
<div class="tsd-comment tsd-typography">
<p>the area occupied by the nodes and links of the main layout, after it was performed</p>
</div>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
<a name="splitParts" class="tsd-anchor"></a>
<h3>
split<wbr>Parts
</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
<li class="tsd-signature tsd-kind-icon">split<wbr>Parts<span class="tsd-signature-symbol">(</span>coll<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span>, maincoll<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span>, sidecoll<span class="tsd-signature-symbol">: </span><a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<p>Assign all of the Parts in the given collection into either the
set of Nodes and Links for the main graph or the set of Nodes and Links
for the side graph.</p>
<p>By default this just calls the <a href="ArrangingLayout.html#filter">filter</a> on each non-Link to decide,
and then looks at each Link's connected Nodes to decide.</p>
<p>A null filter assigns all Nodes that have connected Links to the main graph, and
all Links will be assigned to the main graph, and the side graph will only contain
Parts with no connected Links.</p>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>coll: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
</li>
<li>
<h5>maincoll: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
</li>
<li>
<h5>sidecoll: <a href="Set.html" class="tsd-signature-type">Set</a><span class="tsd-signature-symbol"><</span><a href="Part.html" class="tsd-signature-type">Part</a><span class="tsd-signature-symbol">></span></h5>
<div class="tsd-comment tsd-typography">
</div>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../index.html"><em>GoJS <wbr>Class <wbr>Index</em></a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-class tsd-is-extension">
<a href="ArrangingLayout.html" class="tsd-kind-icon">Arranging<wbr>Layout</a>
<ul>
<li class=" tsd-kind-constructor tsd-parent-kind-class">
<a href="ArrangingLayout.html#constructor" class="tsd-kind-icon">constructor</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#arrangingLayout" class="tsd-kind-icon">arranging<wbr>Layout</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#filter" class="tsd-kind-icon">filter</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#primaryLayout" class="tsd-kind-icon">primary<wbr>Layout</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#side" class="tsd-kind-icon">side</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#sideLayout" class="tsd-kind-icon">side<wbr>Layout</a>
</li>
<li class=" tsd-kind-accessor tsd-parent-kind-class">
<a href="ArrangingLayout.html#spacing" class="tsd-kind-icon">spacing</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="ArrangingLayout.html#moveSideCollection" class="tsd-kind-icon">move<wbr>Side<wbr>Collection</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="ArrangingLayout.html#moveSubgraph" class="tsd-kind-icon">move<wbr>Subgraph</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="ArrangingLayout.html#preparePrimaryLayout" class="tsd-kind-icon">prepare<wbr>Primary<wbr>Layout</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="ArrangingLayout.html#prepareSideLayout" class="tsd-kind-icon">prepare<wbr>Side<wbr>Layout</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class">
<a href="ArrangingLayout.html#splitParts" class="tsd-kind-icon">split<wbr>Parts</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<div class="container-fluid bottom-copyright plr15">
Copyright © 1998-2020 by Northwoods Software Corporation.
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script src="../../assets/js/api.js"></script>
<script src="../../assets/js/bootstrap.min.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-1506307-5', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>