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({
    shapeDefaults: {
        connectorDefaults: {
            fill: {
                color: "#ff6600",
                opacity: 0.8
            }
        }
    },
    shapes: [{
        id: "1",
        content: { text: "Monday" },
        x: 100,
        y: 20
    }],
    connections: [{
        from: "1"
    }]
});
</script>

Defines the fill color of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapeDefaults: {
        connectorDefaults: {
            fill: {
                color: "#00cc66"
            }
        }
    },
    shapes: [{
        id: "1",
        content: { text: "Monday" },
        x: 100,
        y: 20
    }],
    connections: [{
        from: "1"
    }]
});
</script>

Defines the fill opacity of the shape connectors.

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapeDefaults: {
        connectorDefaults: {
            fill: {
                color: "#00cc66",
                opacity: 0.6
            }
        }
    },
    shapes: [{
        id: "1",
        content: { text: "Monday" },
        x: 100,
        y: 20
    }],
    connections: [{
        from: "1"
    }]
});
</script>