geometryStretch property
EnumValue
get
geometryStretch
Gets or sets how the shape's geometry is proportionally created given its computed size. Possible values are GraphObject.None, GraphObject.Fill, GraphObject.Uniform, and GraphObject.Default. The default is GraphObject.Default, which resolves to GraphObject.Fill for most figures, though some regular figures such as "Circle" and "Square" default to GraphObject.Uniform.
Implementation
_i3.EnumValue get geometryStretch => _i4.getProperty(
this,
'geometryStretch',
);
set
geometryStretch
(EnumValue value)
Implementation
set geometryStretch(_i3.EnumValue value) {
_i4.setProperty(
this,
'geometryStretch',
value,
);
}