roundedString(default: undefined)
Controls what border radius is applied to a 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 class="fab-container" style="width: 200px; height: 200px; position: relative;">
<button id="fab-absolute"></button>
</div>
<script>
$('#fab-absolute').kendoFloatingActionButton({
icon: 'home',
align: 'bottom start',
rounded: 'large'
});
</script>