A mapping from nodes to their minimum distances to other nodes around them. This option either sets the value directly or recursively sets properties to the instance of the minimumNodeDistances property on the created object.
The collection of nodes that are fixed and must not be moved. This option either sets the value directly or recursively sets properties to the instance of the fixedNodes property on the created object.
The algorithm tries to preserve the mental map and, thus, non-fixed nodes cannot simply pass/jump over the fixed nodes (i.e. fixed nodes restrict the possible movement of non-fixed nodes).
Gets or sets a mapping from nodes to their minimum distances to other nodes around them.
Remarks
The default minimum distance specified by property minimumNodeDistance will be ignored when specifying individual distances.
Minimum distance values must be greater than 0.
Examples
Minimum distances for individual nodes can, for example, be defined using a delegate in the following way:Using a delegate to determine minimum node distances
// Scale the minimum distance around a node by the node size.// This ensures that larger nodes get more space.
layoutData.minimumNodeDistances = (node) =>Math.max(node.layout.width, node.layout.height)