arrangementSpacing property

Size arrangementSpacing

Gets or sets the space between which the layout will position the connected graphs that together compose the network. This defaults to Size(100, 100). These distances are used during a clustered layout; afterwards the normal force-directed layout will likely cause the size of any space between connected graphs to change, perhaps considerably.

Implementation

_i3.Size get arrangementSpacing => _i4.getProperty(
      this,
      'arrangementSpacing',
    );
void arrangementSpacing=(Size value)

Implementation

set arrangementSpacing(_i3.Size value) {
  _i4.setProperty(
    this,
    'arrangementSpacing',
    value,
  );
}