items.textString(default: null)
If set, the text will be rendered as the button label.
Example - set the text of items
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
items: [
{ text: "Option 1", value: "option1" },
{ text: "Option 2", value: "option2" }
]
});
</script>