roundedString(default: undefined)
Controls what border radius is applied to first and last button. When undefined (the default), the theme controls the default border radius. Valid values are: "small", "medium", "large", "full".
The
"none"value is deprecated. Use custom CSS instead.
Example
<div id="buttonGroup"></div>
<script>
$("#buttonGroup").kendoButtonGroup({
rounded: "full",
items: [
{ text: "<b>foo</b>", encoded: false },
{ text: "<b>bar</b>", encoded: true }
]
});
</script>