roundedString(default: 'full')
Controls what border radius is applied to a button. Valid values are: "small", "medium", "large", "full", and "none".
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> In this article