2016-07-21 10:10:04 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Data Entry
2016-07-21 10:10:04 +08:00
title: Radio
---
Radio.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-21 10:10:04 +08:00
- Used to select a single state in multiple options.
2018-06-28 14:18:23 +08:00
- The difference between Select is that Radio is visible to user and can facilitate the comparison of choice, which makes there shouldn't be too many of them.
2016-07-21 10:10:04 +08:00
## API
### Radio
2018-06-28 14:18:23 +08:00
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| autoFocus | get focus when component mounted | boolean | false |
| checked | Specifies whether the radio is selected. | boolean | - |
| defaultChecked | Specifies the initial state: whether or not the radio is selected. | boolean | false |
| disabled | Disable radio | boolean | false |
| value | According to value for comparison, to determine whether the selected | any | - |
2017-10-25 10:25:44 +08:00
2016-07-21 10:10:04 +08:00
### RadioGroup
2018-06-28 14:18:23 +08:00
Radio group can wrap a group of `Radio` 。
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| defaultValue | Default selected value | any | - |
| disabled | Disable all radio buttons | boolean | false |
| name | The `name` property of all `input[type="radio"]` children | string | - |
| options | set children optional | string\[] \| Array< { label: string value: string disabled?: boolean }> | - |
| size | size for radio button style | `large` \| `default` \| `small` | `default` |
| value | Used for setting the currently selected value. | any | - |
| onChange | The callback function that is triggered when the state changes. | Function(e:Event) | - |
2018-06-28 14:59:19 +08:00
| buttonStyle | style type of radio button | `outline` \| `solid` | `outline` |
2017-12-01 19:28:41 +08:00
## Methods
### Radio
| Name | Description |
| ---- | ----------- |
| blur() | remove focus |
2017-12-29 20:22:58 +08:00
| focus() | get focus |