maxScale property
num
get
maxScale
Gets or sets the largest value that #scale may take. This property is only used to limit the range of new values of #scale.
The default value is 100.0. Values must be no less than one. Setting this to a value that is less than the current #scale will cause the current diagram scale to be set to this new value.
Implementation
_i2.num get maxScale => _i4.getProperty(
this,
'maxScale',
);
set
maxScale
(num value)
Implementation
set maxScale(_i2.num value) {
_i4.setProperty(
this,
'maxScale',
value,
);
}