scale property

num get scale

Gets or sets the scale transform of this GraphObject. Value must be a number; larger values will make this object appear bigger. Default is 1.

Implementation

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

Implementation

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