Pages are now available as full-screen example templates that showcase real-world use cases and best practices for composing interfaces with the aFP Design System.
<afp-radio-group>Since 1.0.0
stable
This component uses the light DOM, so its markup and styles are part of the regular document flow.
The Radio Group component allows users to select a single option from a set of predefined choices. It groups multiple radio buttons together, ensuring that only one option can be selected at a time.
Use the label attribute or slot to provide a label for the radio group.
DogCatBird
<afp-radio-grouplabel="Select your favorite pet"><afp-radiovalue="dog">Dog</afp-radio><afp-radiovalue="cat">Cat</afp-radio><afp-radiovalue="bird">Bird</afp-radio></afp-radio-group>
<afp-radio-group[label]="'Select your favorite pet'"><afp-radio[value]="'dog'">Dog</afp-radio><afp-radio[value]="'cat'">Cat</afp-radio><afp-radio[value]="'bird'">Bird</afp-radio></afp-radio-group>
<AfpRadioGrouplabel="Select your favorite pet"><AfpRadiovalue="dog">Dog</AfpRadio><AfpRadiovalue="cat">Cat</AfpRadio><AfpRadiovalue="bird">Bird</AfpRadio></AfpRadioGroup>
<AfpRadioGroup:label="'Select your favorite pet'"><AfpRadio:value="'dog'">Dog</AfpRadio><AfpRadio:value="'cat'">Cat</AfpRadio><AfpRadio:value="'bird'">Bird</AfpRadio></AfpRadioGroup>
Use the hint attribute to provide additional information below the radio group.
BasicPremiumEnterprise
<afp-radio-grouplabel="Choose your subscription plan"hint="Select the plan that best fits your needs."><afp-radiovalue="basic">Basic</afp-radio><afp-radiovalue="premium"disabled>Premium</afp-radio><afp-radiovalue="enterprise">Enterprise</afp-radio></afp-radio-group>
<afp-radio-group[label]="'Choose your subscription plan'"[hint]="'Select the plan that best fits your needs.'"><afp-radio[value]="'basic'">Basic</afp-radio><afp-radio[value]="'premium'"disabled>Premium</afp-radio><afp-radio[value]="'enterprise'">Enterprise</afp-radio></afp-radio-group>
<AfpRadioGrouplabel="Choose your subscription plan"hint="Select the plan that best fits your needs."><AfpRadiovalue="basic">Basic</AfpRadio><AfpRadiovalue="premium"disabled>Premium</AfpRadio><AfpRadiovalue="enterprise">Enterprise</AfpRadio></AfpRadioGroup>
<AfpRadioGroup:label="'Choose your subscription plan'":hint="'Select the plan that best fits your needs.'"><AfpRadio:value="'basic'">Basic</AfpRadio><AfpRadio:value="'premium'"disabled>Premium</AfpRadio><AfpRadio:value="'enterprise'">Enterprise</AfpRadio></AfpRadioGroup>
Use the disabled attribute to render the radio group in a disabled state.
Pacific Standard Time (PST)Mountain Standard Time (MST)Eastern Standard Time (EST)
<afp-radio-grouplabel="Select your timezone"disabled><afp-radiovalue="pst">Pacific Standard Time (PST)</afp-radio><afp-radiovalue="mst">Mountain Standard Time (MST)</afp-radio><afp-radiovalue="est">Eastern Standard Time (EST)</afp-radio></afp-radio-group>
<afp-radio-group[label]="'Select your timezone'"disabled><afp-radio[value]="'pst'">Pacific Standard Time (PST)</afp-radio><afp-radio[value]="'mst'">Mountain Standard Time (MST)</afp-radio><afp-radio[value]="'est'">Eastern Standard Time (EST)</afp-radio></afp-radio-group>
<AfpRadioGrouplabel="Select your timezone"disabled><AfpRadiovalue="pst">Pacific Standard Time (PST)</AfpRadio><AfpRadiovalue="mst">Mountain Standard Time (MST)</AfpRadio><AfpRadiovalue="est">Eastern Standard Time (EST)</AfpRadio></AfpRadioGroup>
<AfpRadioGroup:label="'Select your timezone'"disabled><AfpRadio:value="'pst'">Pacific Standard Time (PST)</AfpRadio><AfpRadio:value="'mst'">Mountain Standard Time (MST)</AfpRadio><AfpRadio:value="'est'">Eastern Standard Time (EST)</AfpRadio></AfpRadioGroup>
Use the invalid attribute to display an error message and style the radio accordingly.
USACanadaMexico
<afp-radio-grouplabel="Select your country"invalid="This field is required"><afp-radiovalue="usa">USA</afp-radio><afp-radiovalue="canada">Canada</afp-radio><afp-radiovalue="mexico">Mexico</afp-radio></afp-radio-group>
<afp-radio-group[label]="'Select your country'"[invalid]="'This field is required'"><afp-radio[value]="'usa'">USA</afp-radio><afp-radio[value]="'canada'">Canada</afp-radio><afp-radio[value]="'mexico'">Mexico</afp-radio></afp-radio-group>
<AfpRadioGrouplabel="Select your country"invalid="This field is required"><AfpRadiovalue="usa">USA</AfpRadio><AfpRadiovalue="canada">Canada</AfpRadio><AfpRadiovalue="mexico">Mexico</AfpRadio></AfpRadioGroup>
<AfpRadioGroup:label="'Select your country'":invalid="'This field is required'"><AfpRadio:value="'usa'">USA</AfpRadio><AfpRadio:value="'canada'">Canada</AfpRadio><AfpRadio:value="'mexico'">Mexico</AfpRadio></AfpRadioGroup>
Use afp-radio-card components within the radio group to create more visually rich radio options.
Standard Delivery
Delivery within 5-7 business days.
Free
Express Delivery
Delivery within 1-2 business days.
$10.00
<afp-radio-grouplabel="Select a delivery option"orientation="horizontal"><afp-radio-cardvalue="standard"><divclass="afp-cluster afp-align-center"><afp-iconname="truck"></afp-icon><spanclass="afp-stack afp-gap-0"><b>Standard Delivery</b>
Delivery within 5-7 business days.
<afp-badgevariant="success"appearance="outlined"size="small">Free</afp-badge></span></div></afp-radio-card><afp-radio-cardvalue="standard"><divclass="afp-cluster afp-align-center"><afp-iconname="rocket"></afp-icon><spanclass="afp-stack afp-gap-0"><b>Express Delivery</b>
Delivery within 1-2 business days.
<afp-badgevariant="info"size="small">$10.00</afp-badge></span></div></afp-radio-card></afp-radio-group>
<afp-radio-group[label]="'Select a delivery option'"[orientation]="'horizontal'"><afp-radio-card[value]="'standard'"><divclass="afp-cluster afp-align-center"><afp-icon[name]="'truck'"></afp-icon><spanclass="afp-stack afp-gap-0"><b>Standard Delivery</b>
Delivery within 5-7 business days.
<afp-badge[variant]="'success'"[appearance]="'outlined'"[size]="'small'">Free</afp-badge></span></div></afp-radio-card><afp-radio-card[value]="'standard'"><divclass="afp-cluster afp-align-center"><afp-icon[name]="'rocket'"></afp-icon><spanclass="afp-stack afp-gap-0"><b>Express Delivery</b>
Delivery within 1-2 business days.
<afp-badge[variant]="'info'"[size]="'small'">$10.00</afp-badge></span></div></afp-radio-card></afp-radio-group>
<AfpRadioGrouplabel="Select a delivery option"orientation="horizontal"><AfpRadioCardvalue="standard"><divclass="afp-cluster afp-align-center"><AfpIconname="truck"></AfpIcon><spanclass="afp-stack afp-gap-0"><b>Standard Delivery</b>
Delivery within 5-7 business days.
<AfpBadgevariant="success"appearance="outlined"size="small">Free</AfpBadge></span></div></AfpRadioCard><AfpRadioCardvalue="standard"><divclass="afp-cluster afp-align-center"><AfpIconname="rocket"></AfpIcon><spanclass="afp-stack afp-gap-0"><b>Express Delivery</b>
Delivery within 1-2 business days.
<AfpBadgevariant="info"size="small">$10.00</AfpBadge></span></div></AfpRadioCard></AfpRadioGroup>
<AfpRadioGroup:label="'Select a delivery option'":orientation="'horizontal'"><AfpRadioCard:value="'standard'"><divclass="afp-cluster afp-align-center"><AfpIcon:name="'truck'"></AfpIcon><spanclass="afp-stack afp-gap-0"><b>Standard Delivery</b>
Delivery within 5-7 business days.
<AfpBadge:variant="'success'":appearance="'outlined'":size="'small'">Free</AfpBadge></span></div></AfpRadioCard><AfpRadioCard:value="'standard'"><divclass="afp-cluster afp-align-center"><AfpIcon:name="'rocket'"></AfpIcon><spanclass="afp-stack afp-gap-0"><b>Express Delivery</b>
Delivery within 1-2 business days.
<AfpBadge:variant="'info'":size="'small'">$10.00</AfpBadge></span></div></AfpRadioCard></AfpRadioGroup>