RadioButtonGroup
unselected minimal usage
selected minimal usage
- childrenelement[]Required
- labelstringRequiredspecifies the aria-labelvalue for theRadioButtonGroup
- namestringRequiredspecifies the namevalue for theRadioButtonGroupso that no more than oneRadioButtoncan be selected at any given time
- onBlurfuncDefault() => {}specifies the callback for the onBlurevent for eachRadioButtonwithin the group. The default value is a no-op function.
- onChangefuncDefault() => {}specifies the callback for the onChange event for each RadioButton within the group. The default value is a no-op function. 
- onClickfuncDefault() => {}specifies the callback for the onClickevent for eachRadioButtonwithin the group. The default value is a no-op function.
- onFocusfuncDefault() => {}specifies the callback for the onFocusevent for eachRadioButtonwithin the group. The default value is a no-op function.
- onKeyDownfuncDefault() => {}specifies the callback for the onKeyDownevent for eachRadioButtonwithin the group. The default value is a no-op function.
- selectedIndexnumberspecifies which RadioButtonis initially selected. The default value isundefinedwhich signifies that noRadioButtonis initially selected.