tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var group = new draw.Group({
tooltip: {
content: "This is a group of paths"
}
});
var pathA = new draw.Path().moveTo(0, 0).lineTo(100, 100);
var pathB = new draw.Path().moveTo(0, 100).lineTo(100, 0);
group.append(pathA, pathB);
var surface = draw.Surface.create($("#surface"));
surface.draw(group);
</script>
In this article