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

Specifies the fill settings of 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: {
                fill: {
                    color: "yellow",
                    opacity: 0.8
                }
            }
        }
    }
});
</script>

Specifies the fill color of 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: {
                fill: {
                    color: "orange"
                }
            }
        }
    }
});
</script>

Specifies the fill opacity of 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: {
                fill: {
                    color: "blue",
                    opacity: 0.5
                }
            }
        }
    }
});
</script>