New to Kendo UI for jQueryStart a free 30-day trial

ShowAfter

fields

Specifies the delay in milliseconds before the tooltip is shown.

showAfter

Number

Default: 100

<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>
Not finding the help you need?
Contact Support