shapes.connectorDefaults.hover.stroke.widthNumber(default: 1)

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

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        connectorDefaults: {
            hover: {
                stroke: {
                    width: 4
                }
            }
        }
    }]
});
</script>