editable.connect Boolean

Specifies whether the connectors should appear on hover.

Example - hiding shape connectors

<div id="diagram"></div>
<script>
  var Shape = kendo.dataviz.diagram.Shape;
  $("#diagram").kendoDiagram();
  var diagram = $("#diagram").data("kendoDiagram");

  var shape = new Shape({
    id: 1,
    x: 20,
    y: 20,
    fill: "#c0f0fc",
    editable: {
      connect: false
    }
  });
  diagram.addShape(shape);
</script>
In this article