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

Defines the hover configuration of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: {
            text: "Hover Connectors"
        },
        connectorDefaults: {
            hover: {
                fill: {
                    color: "yellow"
                },
                stroke: {
                    color: "red",
                    width: 2
                }
            }
        }
    }]
});
</script>

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 stroke options of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: {
            text: "Hover Stroke"
        },
        connectorDefaults: {
            hover: {
                stroke: {
                    color: "red",
                    width: 3,
                    dashType: "dash"
                }
            }
        }
    }]
});
</script>