rounded String
(default: 'medium')
Sets a value controlling the border radius. Can also be set to the following string values:
- "small"
- "medium"
- "large"
- "full"
- "none"
Example
<input id="timedurationpicker" />
<script>
$("#timedurationpicker").kendoTimeDurationPicker({
columns: [ "hours", "minutes" ],
rounded: "large"
});
</script>