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

Defines the hover fill options of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Hover Connectors" },
        x: 100,
        y: 20,
        connectors: [{
            name: "top",
            hover: {
                fill: {
                    color: "#ffcc00",
                    opacity: 0.9
                }
            }
        }]
    }]
});
</script>

Defines the hover fill color of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Hover for Red Connectors" },
        x: 100,
        y: 20,
        connectors: [{
            name: "bottom",
            hover: {
                fill: {
                    color: "#ff3300"
                }
            }
        }]
    }]
});
</script>

Defines the hover fill opacity of the shape connectors.

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Semi-transparent Hover" },
        x: 100,
        y: 20,
        connectors: [{
            name: "left",
            hover: {
                fill: {
                    color: "#0066cc",
                    opacity: 0.6
                }
            }
        }]
    }]
});
</script>