tooltip_hide_timeout

设置tooltip在消失前保持可见的时间,单位为毫秒

number tooltip_hide_timeout;

Example

scheduler.plugins({
    tooltip: true
});
 
scheduler.config.tooltip_hide_timeout = 5000;
scheduler.init('scheduler_here',new Date(2023,10,20),"week");

Details

此选项属于tooltip 扩展,因此请确保启用了 tooltip 插件。更多详细信息请参见 Tooltips(工具提示) 文章。

See also
返回顶部