tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
    var draw = kendo.drawing;
    var path = new draw.Path({
        tooltip: {
            content: "This is a drawing path"
        },
        stroke: {
            color: "#9b59b6",
            width: 3
        }
    })
    .moveTo(50, 100)
    .lineTo(200, 100);
    var surface = draw.Surface.create($("#surface"));
    surface.draw(path);
</script>In this article