encoded Boolean (default: true)

Determines whether the radio label content should be rendered as an HTML string or it should be encoded.

Example

<input id="radio" />

<script>
    $("#radio").kendoRadioButton({
        label: "<strong>Label one</strong>",
        encoded: false
    });
</script>
In this article