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"></div>
<script>
    var draw = kendo.drawing;
    var geom = kendo.geometry;

    var position = new geom.Point(10, 10);
    var text = new draw.Text("Clickable text", position, {
        cursor: "pointer",
        fill: { color: "blue" }
    });

    var surface = draw.Surface.create($("#surface"));
    surface.draw(text);
</script>
Not finding the help you need?
Contact Support