inputSize String (default: 'medium')

Sets a value controlling the size of the radio inputs. Can also be set to the following string values:

  • "small"
  • "medium"
  • "large"
  • null

Example

<ul id="radiogroup"></ul>

<script>
    $("#radiogroup").kendoRadioGroup({
        items: [ "one", "two", "three" ],
        inputSize: "large"
    });
</script>
In this article