tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var circleGeometry = new geom.Circle([100, 100], 30);
var circle = new draw.Circle(circleGeometry, {
tooltip: {
content: "This is a circle tooltip",
position: "top"
},
fill: { color: "yellow" },
stroke: { color: "orange", width: 2 }
});
var surface = draw.Surface.create($("#surface"));
surface.draw(circle);
</script>
In this article