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

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>

Defines the hover stroke color.

Default: "Black"

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

The hover stroke dash type.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: {
            text: "Hover Dash Type"
        },
        connectorDefaults: {
            hover: {
                stroke: {
                    color: "green",
                    dashType: "dot"
                }
            }
        }
    }]
});
</script>

Defines the thickness or width of the shape connectors stroke on hover.

Default: 1

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