allowHideAfter Number (default: 0)

Indicates the period in milliseconds after which a notification can be dismissed (hidden) by the user.

Example - set allowHideAfter to 1 second

<span id="notification"></span>
<script>
$("#notification").kendoNotification({
    allowHideAfter: 1000
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
In this article