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