Radio Group
Allows single selection from multiple options.
Allows single selection from multiple options.
To set up the radio group correctly, you’ll need to understand its anatomy and how we name its parts.
Each part includes a
data-part
attribute to help identify them in the DOM.
The RadioGroup.Item
element of the radio group is a label
element. This is
because the radio group is a form control and should be associated with a label
to provide context and meaning to the user. Otherwise, the HTML and
accessibility structure will be invalid.
If you need to use the
asChild
property, make sure that thelabel
element is the direct child of theRadioGroup.Item
component.
Learn how to use the RadioGroup
component in your project. Let’s take a look
at the most basic example:
import { RadioGroup } from '@ark-ui/react'
export const Basic = () => {
const frameworks = ['React', 'Solid', 'Vue']
return (
<RadioGroup.Root>
<RadioGroup.Label>Framework</RadioGroup.Label>
<RadioGroup.Indicator />
{frameworks.map((framework) => (
<RadioGroup.Item key={framework} value={framework}>
<RadioGroup.ItemText>{framework}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
))}
</RadioGroup.Root>
)
}
import { Index } from 'solid-js'
import { RadioGroup } from '@ark-ui/solid'
export const Basic = () => {
const frameworks = ['React', 'Solid', 'Vue']
return (
<RadioGroup.Root>
<RadioGroup.Label>Framework</RadioGroup.Label>
<RadioGroup.Indicator />
<Index each={frameworks}>
{(framework) => (
<RadioGroup.Item value={framework()}>
<RadioGroup.ItemText>{framework()}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
)}
</Index>
</RadioGroup.Root>
)
}
<script setup lang="ts">
import { ref } from 'vue'
import { RadioGroup } from '@ark-ui/vue'
const frameworks = ref(['React', 'Solid', 'Vue'])
</script>
<template>
<RadioGroup.Root>
<RadioGroup.Label>Framework</RadioGroup.Label>
<RadioGroup.Indicator />
<RadioGroup.Item v-for="framework in frameworks" :key="framework" :value="framework">
<RadioGroup.ItemText>{{ framework }}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
</RadioGroup.Root>
</template>
To make a radio group disabled, set the disabled
prop to true
.
import { RadioGroup } from '@ark-ui/react'
export const Disabled = () => {
const frameworks = ['React', 'Solid', 'Vue']
return (
<RadioGroup.Root disabled>
<RadioGroup.Label>Framework</RadioGroup.Label>
{frameworks.map((framework) => (
<RadioGroup.Item key={framework} value={framework}>
<RadioGroup.ItemText>{framework}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
))}
</RadioGroup.Root>
)
}
import { Index } from 'solid-js'
import { RadioGroup } from '@ark-ui/solid'
export const Disabled = () => {
const frameworks = ['React', 'Solid', 'Vue']
return (
<RadioGroup.Root disabled>
<RadioGroup.Label>Framework</RadioGroup.Label>
<Index each={frameworks}>
{(framework) => (
<RadioGroup.Item value={framework()}>
<RadioGroup.ItemText>{framework()}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
)}
</Index>
</RadioGroup.Root>
)
}
<script setup lang="ts">
import { ref } from 'vue'
import { RadioGroup } from '@ark-ui/vue'
const frameworks = ref(['React', 'Solid', 'Vue'])
</script>
<template>
<RadioGroup.Root disabled>
<RadioGroup.Label>Framework</RadioGroup.Label>
<RadioGroup.Indicator />
<RadioGroup.Item v-for="framework in frameworks" :key="framework" :value="framework">
<RadioGroup.ItemText>{{ framework }}</RadioGroup.ItemText>
<RadioGroup.ItemControl />
</RadioGroup.Item>
</RadioGroup.Root>
</template>
To set the radio group’s initial value, set the defaultValue
prop to the value
of the radio item to be selected by default.
Story not found
Story not found
Story not found
When the radio group value changes, the onValueChange
callback is invoked.
Story not found
Story not found
Story not found
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean | |
defaultValue The initial value of the radio group when it is first rendered.
Use when you do not need to control the state of the radio group. | string | |
disabled If `true`, the radio group will be disabled | boolean | |
form The associate form of the underlying input. | string | |
id The unique identifier of the machine. | string | |
ids The ids of the elements in the radio. Useful for composition. | Partial<{
root: string
label: string
indicator: string
item(value: string): string
itemLabel(value: string): string
itemControl(value: string): string
itemHiddenInput(value: string): string
}> | |
name The name of the input fields in the radio
(Useful for form submission). | string | |
onValueChange Function called once a radio is checked | (details: ValueChangeDetails) => void | |
orientation Orientation of the radio group | 'horizontal' | 'vertical' | |
readOnly Whether the checkbox is read-only | boolean | |
value The value of the checked radio | string |
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean |
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean |
Prop | Type | Default |
---|---|---|
value | string | |
asChild Render as a different element type. | boolean | |
disabled | boolean | |
invalid | boolean |
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean |
Prop | Type | Default |
---|---|---|
asChild Render as a different element type. | boolean |
Previous
Progress - LinearNext
Rating Group