New to Kendo UI for jQueryStart a free 30-day trial

Specifies the fill settings on hovering over the resizing handles. See the editable.resize configuration for an example.

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

Specifies the fill color on hovering over the resizing handles. See the editable.resize configuration for an example.

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

Specifies the fill opacity on hovering over the resizing handles. See the editable.resize configuration for an example.

Default: 1

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