shapes.connectorDefaults.hover.fill.colorString
Defines the hover fill color of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Pink Hover Fill" },
x: 100,
y: 20,
connectorDefaults: {
hover: {
fill: {
color: "#ff99cc"
}
}
}
}]
});
</script>
In this article