height property

num get height

Gets or sets the row height, in local coordinates. This describes the row height if #isRow is true; otherwise this property is meaningless. The value must be non-negative and finite.

The default value is NaN, which means this row will get a height that is just big enough to hold all of the objects in the row.

Setting this value to a number will mean that all of the objects of this Panel in this row will be allocated that amount of row height. Whether an object in the row is actually arranged to have that height depends on whether the GraphObject#stretch stretches vertically.

Implementation

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

Implementation

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