cursorString
The element cursor. Inherited from Element.cursor
Example - setting cursor in configuration
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
var draw = kendo.drawing;
var multiPath = new draw.MultiPath({
cursor: "pointer",
fill: { color: "blue" }
});
multiPath.moveTo(50, 50).lineTo(200, 50).lineTo(125, 150).close();
var surface = draw.Surface.create($("#surface"));
surface.draw(multiPath);
</script>
In this article