connectionDefaults.toConnector String (default: "Auto")

Specifies the name of the target shape connector that should be used by default. Valid values are "top", "right", "bottom", "left" and "auto".

Example - making all connections end in the bottom shape connector

<div id="diagram"></div>
<script>
  $("#diagram").kendoDiagram({
    shapes:[
      {
        id:"1",
        content:{
          text: "State 1"
        },
        x: 20,
        y: 20
      },
      {
        id:"2",
        content: {
          text: "State 2"
        },
        x: 200,
        y: 20
      },
      {
        id:"3",
        content: {
          text: "State 3"
        },
        x: 380,
        y: 20
      }
    ],
    connections:[
      {
        from: "1",
        to: "2"
      },
      {
        from: "2",
        to: "3"
      }
    ],
    connectionDefaults: {
      toConnector: "top"
    }
  });
</script>
In this article