cursor String
The element CSS cursor.
Applicable to an SVG output.
Example - set hand cursor on an element
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var circle = new draw.Circle(new geom.Circle([100, 100], 80), {
cursor: "pointer",
stroke: { color: "red", width: 1 }
});
var surface = draw.Surface.create($("#surface"));
surface.draw(circle);
</script>