toolTipDuration property
num
get
toolTipDuration
Gets or sets how long a tool tip is visible. The default value is 5000 milliseconds.
This is used by #showToolTip to determine how long to wait before calling #hideToolTip.
Set #hoverDelay to control how long the mouse should stay stationary before it shows a tooltip.
Implementation
_i2.num get toolTipDuration => _i4.getProperty(
this,
'toolTipDuration',
);
set
toolTipDuration
(num value)
Implementation
set toolTipDuration(_i2.num value) {
_i4.setProperty(
this,
'toolTipDuration',
value,
);
}