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="button" type="button">Cancel</button>
<script>
$("#button").kendoButton({
rounded: "full"
});
</script>