tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example - setting tooltip in configuration
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
var draw = kendo.drawing;
var multiPath = new draw.MultiPath({
tooltip: {
content: "This is a multi-path shape"
},
fill: { color: "orange" }
});
multiPath.moveTo(50, 50).lineTo(200, 50).lineTo(125, 150).close()
.moveTo(75, 75).lineTo(175, 75).lineTo(125, 100).close();
var surface = draw.Surface.create($("#surface"));
surface.draw(multiPath);
</script>
In this article