New to Kendo UI for jQueryStart a free 30-day trial

Cursor

configuration

The element cursor. Inherited from Element.cursor

cursor

String
<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>
Not finding the help you need?
Contact Support