cursorString
The element cursor. Inherited from Element.cursor
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, {
cursor: "pointer",
fill: { color: "lightgreen" },
stroke: { color: "darkgreen", width: 2 }
});
var surface = draw.Surface.create($("#surface"));
surface.draw(circle);
</script>
In this article