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

The anchor point of the arrow marker. This is the point where the marker will be positioned relative to the line. Applies when the type is "ArrowEnd" or "ArrowStart".

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    connections: [{
      startCap: {
        type: "ArrowStart",
        path: "M 0 0 L 10 5 L 0 10 Z",
        anchor: { x: 5, y: 5 }
      }
    }]
});
</script>

The x-coordinate of the anchor point.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    connections: [{
      startCap: {
        type: "ArrowStart",
        path: "M 0 0 L 10 5 L 0 10 Z",
        anchor: { x: 8 }
      }
    }]
});
</script>

The y-coordinate of the anchor point.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    connections: [{
      startCap: {
        type: "ArrowStart",
        path: "M 0 0 L 10 5 L 0 10 Z",
        anchor: { y: 5 }
      }
    }]
});
</script>