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

Specifies the fill settings of the rotation thumb.

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

Specifies the fill color of the rotation thumb.

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

Specifies the fill opacity of the rotation thumb.

Default: 1

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