arrangementOrigin property
Point
get
arrangementOrigin
Gets or sets the top-left point for where the graph should be positioned when laid out. The default value for this property is the Point(0, 0). Setting this property to a new value invalidates this layout. This property is likely to be set by many Layouts that belong to a Group when the layout is performed.
Implementation
_i3.Point get arrangementOrigin => _i4.getProperty(
this,
'arrangementOrigin',
);
set
arrangementOrigin
(Point value)
Implementation
set arrangementOrigin(_i3.Point value) {
_i4.setProperty(
this,
'arrangementOrigin',
value,
);
}