# Radio 单选框 在一组备选项中进行单选 ## TS 定义 ```typescript interface RedioGroup extends FormItem { type: 'redioGroup'; options: { value: any; text: string; }[]; } ``` 点击查看[FormItem](https://github.com/Tencent/tmagic-editor/blob/master/packages/form/src/schema.ts)的定义 ## 基础用法 由于选项默认可见,不宜过多,若选项过多,建议使用 Select 选择器。 ## 禁用状态 单选框不可用的状态。 ## RadioGroup Attributes | 参数 | 说明 | 类型 | 可选值 | 默认值 | |---------- |-------- |---------- |------------- |-------- | | name | 绑定值 | string | — | — | | text | 表单标签 | string | — | — | | disabled | 是否禁用 | boolean / [FilterFunction](https://github.com/Tencent/tmagic-editor/blob/master/packages/form/src/schema.ts) | — | false | | options | 选项 | Array | — | - | | onChange | 值变化时触发的函数 | [OnChangeHandler ](https://github.com/Tencent/tmagic-editor/blob/master/packages/form/src/schema.ts) | — | - |