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: "Connector Fill Hover"
        },
        connectorDefaults: {
            hover: {
                fill: {
                    color: "orange",
                    opacity: 0.7
                }
            }
        }
    }]
});
</script>

Defines the hover fill color of the shape connectors.

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

Defines the hover fill opacity of the shape connectors.

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: {
            text: "Hover Fill Opacity"
        },
        connectorDefaults: {
            hover: {
                fill: {
                    color: "purple",
                    opacity: 0.4
                }
            }
        }
    }]
});
</script>