column property

num get column

Gets or sets the column to which the node is assigned. The default value is -1.

This property is not used during straightening and packing of nodes when using LayeredDigraphLayout#alignOption.

Implementation

_i2.num get column => _i4.getProperty(
      this,
      'column',
    );
set column (num value)

Implementation

set column(_i2.num value) {
  _i4.setProperty(
    this,
    'column',
    value,
  );
}