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

Tooltip

configuration

The tooltip options of the shape.

tooltip

kendo.drawing.TooltipOptions
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
    var draw = kendo.drawing;
    var geom = kendo.geometry;

    var rect = new geom.Rect([10, 10], [200, 150]);
    var image = new draw.Image("https://demos.telerik.com/kendo-ui/content/web/editor/tenerife.png", rect);
    image.tooltip = {
        content: "Beautiful Tenerife landscape"
    };

    var surface = draw.Surface.create($("#surface"));
    surface.draw(image);
</script>
Not finding the help you need?
Contact Support