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