row property

num row

Gets or sets the row of this GraphObject if it is in a Table Panel. The value must be a small non-negative integer. The default is 0.

Implementation

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

Implementation

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