<title>vis.js - A dynamic, browser based visualization library.</title>
<title>vis.js - Edges documentation.</title>
<!-- Bootstrap core CSS -->
<!-- Bootstrap core CSS -->
<linkhref="../css/bootstrap.css"rel="stylesheet">
<linkhref="../css/bootstrap.css"rel="stylesheet">
@ -81,7 +81,7 @@
<h1>Network - edges</h1>
<h1>Network - edges</h1>
<p>Handles the creation and deletion of edges and contains the global edge options and styles.</p>
<p>Handles the creation and deletion of edges and contains the global edge options and styles.</p>
<aclass="btn btn-primary"role="button"onclick="history.back()">Back to overview.</a>
<h3>Options</h3>
<h3>Options</h3>
<p>The options for the edges have to be contained in an object titled 'edges'. All of these options can be supplied per edge as well. Obviously, 'id' should not be defined globally but per edge. Options defined
<p>The options for the edges have to be contained in an object titled 'edges'. All of these options can be supplied per edge as well. Obviously, 'id' should not be defined globally but per edge. Options defined
<title>vis.js - A dynamic, browser based visualization library.</title>
<title>vis.js - Network documentation.</title>
<!-- Bootstrap core CSS -->
<!-- Bootstrap core CSS -->
<linkhref="../css/bootstrap.css"rel="stylesheet">
<linkhref="../css/bootstrap.css"rel="stylesheet">
@ -645,6 +645,7 @@ function releaseFunction (clusterPosition, containedNodesPositions) {
newPositions[nodeId] = {x:newPosX, y:newPosY};
newPositions[nodeId] = {x:newPosX, y:newPosY};
return newPositions;
return newPositions;
}</pre>
}</pre>
The containedNodesPositions contain the positions of the nodes in the cluster at the moment they were clustered.
This function is expected to return the newPositions, which can be the containedNodesPositions (altered) or a new object. This has to be an object with keys equal
This function is expected to return the newPositions, which can be the containedNodesPositions (altered) or a new object. This has to be an object with keys equal
to the nodeIds that exist in the containedNodesPositions and an <code>{x:x,y:y}</code> position object. <br><br>
to the nodeIds that exist in the containedNodesPositions and an <code>{x:x,y:y}</code> position object. <br><br>
<title>vis.js - A dynamic, browser based visualization library.</title>
<title>vis.js - Nodes documentation.</title>
<!-- Bootstrap core CSS -->
<!-- Bootstrap core CSS -->
<linkhref="../css/bootstrap.css"rel="stylesheet">
<linkhref="../css/bootstrap.css"rel="stylesheet">
@ -73,7 +73,7 @@
<h1>Network - nodes</h1>
<h1>Network - nodes</h1>
<p>Handles the creation and deletion of nodes and contains the global node options and styles.</p>
<p>Handles the creation and deletion of nodes and contains the global node options and styles.</p>
<aclass="btn btn-primary"role="button"onclick="history.back()">Back to overview.</a>
<h3>Options</h3>
<h3>Options</h3>
<p>The options for the nodes have to be contained in an object titled 'nodes'. All of these options can be supplied per node as well. Obviously, 'id' should not be defined globally but per node. Options defined
<p>The options for the nodes have to be contained in an object titled 'nodes'. All of these options can be supplied per node as well. Obviously, 'id' should not be defined globally but per node. Options defined
in the global nodes object, are applied to all nodes. If a node has options of its own, those will be used instead of the global options.</p>
in the global nodes object, are applied to all nodes. If a node has options of its own, those will be used instead of the global options.</p>