shapes.hover.fill.opacityNumber(default: 1)
Defines the hover fill opacity.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        hover: {
            fill: {
                opacity: 0.6
            }
        }
    }]
});
</script>In this article