New to Kendo UI for jQuery? Download free 30-day trial

Label

If the RadioGroup widget is bound to an array of strings, those will be used as both value and label of the respective radio button. If the widget is bound to array of objects, the label option could be used to specify the label content.

Set the Label text

To customize the text of the label, use the label option.

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

    <script>
        $("#radiogroup").kendoRadioGroup({
            items: [ {
                value: "one",
                label: "Standard delivery"
            },{
                value: "two",
                label: "Fast delivery"
            },{
                value: "three",
                label: "Express delivery"
            }],
        });
    </script>

Configure the Label Position

The labels of all radio buttons in the RadioGroup could be rendered before or after the radio buttons.

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

    <script>
        $("#radiogroup").kendoRadioGroup({
            items: [ "Blue", "Green", "Red" ],
            labelPosition: "after"
        });
    </script>

See Also

In this article