tooltipkendo.drawing.TooltipOptions
The tooltip options of the shape.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var arcGeometry = new geom.Arc([100, 100], {
radiusX: 25,
radiusY: 35,
startAngle: 0,
endAngle: 120
});
var arc = new draw.Arc(arcGeometry, {
stroke: { color: "teal", width: 3 },
tooltip: {
content: "Arc Shape",
position: "top"
}
});
var surface = draw.Surface.create($("#surface"));
surface.draw(arc);
</script>
In this article