shapes.connectors.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",
content: { text: "Thick Hover Stroke" },
x: 100,
y: 20,
connectors: [{
name: "bottom",
hover: {
stroke: {
width: 5,
color: "#006600"
}
}
}]
}]
});
</script>