shapes.hover.fillString|Object

Defines the hover fill options.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        x: 100,
        y: 100,
        content: { text: "Shape 1" },
        hover: {
            fill: {
                color: "lightblue",
                opacity: 0.8
            }
        }
    }]
});
</script>