columnSpan property
num
get
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',
);
set
columnSpan
(num value)
Implementation
set columnSpan(_i2.num value) {
_i4.setProperty(
this,
'columnSpan',
value,
);
}