bubbles property
bool
get
bubbles
Gets or sets whether panning actions will allow events to bubble instead of panning in the diagram.
Set this to true to allow mobile devices to scroll the page with panning gestures on the diagram. Otherwise, the panning events will be captured and used to pan inside of the diagram.
The default value is false.
Implementation
_i2.bool get bubbles => _i4.getProperty(
this,
'bubbles',
);
set
bubbles
(bool value)
Implementation
set bubbles(_i2.bool value) {
_i4.setProperty(
this,
'bubbles',
value,
);
}