items.label String
Specifies the label content for the radio button.
Example
<ul id="radiogroup"></ul>
<script>
$("#radiogroup").kendoRadioGroup({
items: [{
value: "one",
label: "<strong>Label one</strong>"
},{
value: "two",
label: "Label two"
},{
value: "three",
label: "Label three"
}]
});
</script>