showAfterNumber
(default: 100)
Specifies the delay in milliseconds before the tooltip is shown.
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([70, 50], 20), {
fill: { color: "yellow" },
stroke: { color: "black" },
tooltip: {
content: "Tooltip with show delay",
showAfter: 1000
}
});
surface.draw(circle);
</script>
In this article