rowSpan property

num get rowSpan

Gets or sets the number of rows 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 rowSpan => _i4.getProperty(
      this,
      'rowSpan',
    );
set rowSpan (num value)

Implementation

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