sizeString(default: undefined)
Controls the size of the different buttons. When undefined (the default), the theme controls the size. Can also be set to the following string values:
- "small"
- "medium"
- "large"
Example - set a large size
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
size: "large",
items: [
{ text: "Option 1", value: "option1" },
{ text: "Option 2", value: "option2" }
]
});
</script>