`` provides the same functionality as a native `` enhanced with Material Design styling and animations. All radio-buttons with the same `name` comprise a set from which only one may be selected at a time. ### Radio-button label The radio-button label is provided as the content to the `` element. The label can be positioned before or after the radio-button by setting the `labelPosition` property to `'before'` or `'after'`. If you don't want the label to appear next to the radio-button, you can use [`aria-label`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-label) or [`aria-labelledby`](https://www.w3.org/TR/wai-aria/states_and_properties#aria-labelledby) to specify an appropriate label. ### Radio groups Radio-buttons should typically be placed inside of an `` unless the DOM structure would make that impossible (e.g., radio-buttons inside of table cells). The radio-group has a `value` property that reflects the currently selected radio-button inside of the group. Individual radio-buttons inside of a radio-group will inherit the `name` of the group. ### Use with `@angular/forms` `` is compatible with `@angular/forms` and supports both `FormsModule` and `ReactiveFormsModule`. ### Accessibility `MatRadioButton` uses an internal `` to provide an accessible experience. This internal radio button receives focus and is automatically labelled by the text content of the `` element. Avoid adding other interactive controls into the content of ``, as this degrades the experience for users of assistive technology. Always provide an accessible label via `aria-label` or `aria-labelledby` for radio buttons without descriptive text content. For dynamic labels and descriptions, `MatRadioButton` provides input properties for binding `aria-label`, `aria-labelledby`, and `aria-describedby`. This means that you should not use the `attr.` prefix when binding these properties, as demonstrated below. ```html ``` Prefer placing all radio buttons inside of a `` rather than creating standalone radio buttons because groups are easier to use exclusively with a keyboard. You should provide an accessible label for all `` elements via `aria-label` or `aria-labelledby`.