hideAfterNumber(default: 100)
Specifies the delay (in milliseconds) before the Tooltip is hidden.
Example - setting the hide delay
<span id="target" title="Tooltip long content"> Some content </span> <script> $(document).ready(function() { $("#target").kendoTooltip({ hideAfter: 500 }); }); </script> In this article