rounded String (default: 'medium')

Controls what border radius is applied to a button. Valid values are: "small", "medium", "large", "full", and "none". Default value is "medium".

Example

<button id="splitbutton" type="button">Cancel</button>
<script>
    $("#splitbutton").kendoSplitButton({
        items:[
            { text: "item 1" },
            { text: "item 2" }
        ],
        rounded: "full"
    });
</script>
In this article