cursorString
The element cursor. Inherited from Element.cursor
Example
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
var draw = kendo.drawing;
var path = new draw.Path({
cursor: "pointer",
stroke: {
color: "#3498db",
width: 3
}
})
.moveTo(50, 50)
.lineTo(200, 200);
var surface = draw.Surface.create($("#surface"));
surface.draw(path);
</script>
In this article