height property

num get height

Gets or sets the desired height of this GraphObject in local coordinates. This just gets or sets the height component of the #desiredSize. Default is NaN.

Size can also be constrained by setting #minSize and #maxSize.

The height does not include any transformation due to #scale or #angle, nor any pen thickness due to Shape#strokeWidth if this is a Shape. If there is a containing Panel the Panel will determine the actual size.

Implementation

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

Implementation

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