hideDelayNumber
(default: 0)
Specifies the delay in milliseconds before the tooltip is hidden after leaving the shape.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var surface = draw.Surface.create($("#surface"));
var circle = new draw.Circle(new geom.Circle([60, 40], 25), {
fill: { color: "orange" },
tooltip: {
content: "Tooltip with hide delay",
hideDelay: 2000
}
});
surface.draw(circle);
</script>
In this article