columnSpan property

num columnSpan

Gets or sets the number of columns spanned by this GraphObject if it is in a Table Panel. The value must be a small positive integer. The default is 1.

Implementation

_i2.num get columnSpan => _i4.getProperty(
      this,
      'columnSpan',
    );
void columnSpan=(num value)

Implementation

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