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