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

Defines the fill options of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        connectorDefaults: {
            fill: {
                color: "lightblue",
                opacity: 0.8
            }
        }
    }]
});
</script>

Defines the fill color of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        connectorDefaults: {
            fill: {
                color: "orange"
            }
        }
    }]
});
</script>

Defines the fill opacity of the shape connectors.

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        connectorDefaults: {
            fill: {
                opacity: 0.6
            }
        }
    }]
});
</script>