shapes.connectors.hover.fillString|Object
Defines the hover fill options of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Hover Connectors" },
x: 100,
y: 20,
connectors: [{
name: "top",
hover: {
fill: {
color: "#ffcc00",
opacity: 0.9
}
}
}]
}]
});
</script>
In this article