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

The drawing element used to draw the line.

drawingElement

kendo.drawing.Path
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    connections: [{
        from: { x: 100, y: 150 },
        to: { x: 300, y: 150 }
    }]
});

var diagram = $("#diagram").getKendoDiagram();
var connection = diagram.connections[0];
console.log("Drawing element:", connection.drawingElement);
</script>
Not finding the help you need?
Contact Support