tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example
<div id="surface"></div>
<script>
    var draw = kendo.drawing;
    var geom = kendo.geometry;
    var position = new geom.Point(10, 10);
    var text = new draw.Text("Hover me", position, {
        font: "16px Arial",
        tooltip: {
            content: "This is a tooltip for the text"
        }
    });
    var surface = draw.Surface.create($("#surface"));
    surface.draw(text);
</script>In this article