labelPosition String
(default: "after")
Specifies the label position according to its radio button for all items in the widget. Accepts "before" and "after".
Example
<ul id="radiogroup"></ul>
<script>
$("#radiogroup").kendoRadioGroup({
items: [ "one", "two", "three" ],
labelPosition: "before"
});
</script>