items Array

Array of items to be rendered as radio buttons in the RadioGroup. If the array contains objects, their fields will be used for each radio button. If the array contains strings, those will be used as both value and label of the respective radio button.

Example - items defined as array of strings

<ul id="radiogroup"></ul>

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ]
    });
</script>

Example - items defined as array of objects

<ul id="radiogroup"></ul>

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [{
            value: "one",
            label: "Label one"
        },{
            value: "two",
            label: "Label two"
        },{
            value: "three",
            label: "Label three"
        }]
    });
</script>
In this article