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 Fill Default" },
        x: 100,
        y: 20,
        connectorDefaults: {
            hover: {
                fill: {
                    color: "#0099cc",
                    opacity: 0.8
                }
            }
        }
    }]
});
</script>

Defines the hover fill color of the shape connectors.

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

Defines the hover 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: {
            hover: {
                fill: {
                    opacity: 0.7
                }
            }
        }
    }]
});
</script>