shapes.connectors.hover.fill.opacityNumber(default: 1)

Defines the hover fill opacity of the shape connectors.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Semi-transparent Hover" },
        x: 100,
        y: 20,
        connectors: [{
            name: "left",
            hover: {
                fill: {
                    color: "#0066cc",
                    opacity: 0.6
                }
            }
        }]
    }]
});
</script>