Fact-checked by Grok 2 weeks ago

Radio button

A radio button is a graphical user interface (GUI) element that enables users to select a single option from a set of two or more mutually exclusive choices. Typically rendered as a small circular —empty when unselected and filled or marked when chosen—radio buttons function in groups where selecting one automatically deselects all others in the same group. This design ensures clear, unambiguous single-selection input, commonly used in forms, dialogs, and settings panels across , , and applications. The term "radio button" originates from the physical preset buttons on early car radios, where pressing one button to tune a station would release any previously pressed buttons, preventing multiple selections. The digital version emerged in the at PARC, where it was introduced as part of the Smalltalk programming environment's on the computer, alongside other foundational elements like windows, icons, and menus. This innovation laid the groundwork for modern interactive interfaces, influencing subsequent systems such as Apple's Macintosh and Microsoft's Windows. In contemporary web development, radio buttons are implemented using the HTML <input type="radio"> element, grouped via the name attribute to enforce mutual exclusivity. Design guidelines from major platforms emphasize their use when users must view all options simultaneously, such as for gender selection or priority levels, while recommending alternatives like checkboxes for multiple selections or dropdowns for lengthy lists. Accessibility best practices require proper labeling with <label> elements and grouping via <fieldset> and <legend> for screen reader compatibility.

Definition and Characteristics

Core Functionality

Radio buttons are graphical control elements in user interfaces that enable users to select one option from a predefined set of mutually exclusive choices, ensuring that only a single selection is active within the group at any time. This design enforces exclusivity, making radio buttons ideal for scenarios where multiple simultaneous selections are not permitted, such as choosing a single preference or category. The operational mechanics of radio buttons involve user interaction through clicking or equivalent input methods, which activates the selected option by filling the button with a visual indicator, such as a . Selecting one radio button in a group automatically deselects any previously chosen option in the same group, maintaining the single-selection rule. Users cannot deselect all options within the group using standard interaction; achieving a "none" state typically requires additional scripting or a separate "none" option. Grouping of radio buttons is enforced through shared identifiers, such as the name attribute in , which links multiple buttons into a single logical set and triggers the behavior across them. Without this shared identifier, buttons operate independently, allowing multiple selections, which defeats the core purpose of the control. For instance, in a form for selecting a payment method, options like "," "," and "Bank Transfer" can be presented as radio buttons sharing the same name attribute; choosing "" immediately deselects "" if it was previously selected.

Visual Design and Behavior

Radio buttons are typically rendered as small circular outlines, often measuring 13 to 20 pixels in , which remain empty when unselected and become filled with a smaller inner circle or dot upon selection. This design draws from the physical push buttons on older car radios, where pressing one button would release the others to indicate the active station, adapted digitally to provide a persistent visual cue for the chosen option. Accompanying labels, placed adjacent to the circle, describe the option and are integral for clarity, ensuring users can associate the control with its meaning at a glance. User interaction with radio buttons triggers distinct behavioral feedback to confirm actions and enhance . On hover, the control may subtly change color or opacity, such as a light overlay, while focus states—often indicated by a or glow—highlight the element for keyboard navigation. Selection produces an immediate visual shift to the filled state, sometimes accompanied by a brief or to acknowledge the input, with deselection of other options in the group occurring simultaneously to maintain . For , these feedback mechanisms incorporate color shifts and sufficient contrast ratios, ensuring visibility for users with low vision without relying solely on hue changes. While core designs prioritize an outlined circle for unselected states and a filled one for selected, variations exist such as fully outlined styles in some modern or inverted fills for dark themes. However, in these elements across an interface is crucial for , as deviations can confuse users familiar with standard conventions, potentially increasing during option selection.

Historical Development

Origins in User Interfaces

The concept of radio buttons emerged in the 1970s from research at , where developers drew inspiration from physical selectors on like car radios, which allowed only one station to be locked in at a time by mechanically releasing others when a new one was pressed. This analogy informed the design of mutually exclusive selection controls in early graphical user interfaces (GUIs). The first digital implementations appeared in the Smalltalk programming environment on the system (introduced in 1973), during the mid-1970s, featuring radio buttons alongside other innovations like scroll bars and dialog boxes as part of its pioneering bitmap display and mouse-driven interaction. A significant milestone came with the 8010 workstation in 1981, the first commercial to incorporate radio buttons in its , influencing later systems through its office-oriented interface design. Radio buttons gained widespread adoption during the 1980s as GUIs proliferated in commercial . In the Apple Macintosh, released in 1984, they were integrated into dialog boxes for option selection, using circular indicators to visually distinguish them from square checkboxes, enabling users to choose one exclusive option from a group. Similarly, Microsoft Windows 1.0, launched in 1985, incorporated radio buttons in its interface elements, standardizing their use for single-selection tasks within windows and forms, which helped popularize the control across personal platforms. A key milestone in their standardization occurred in the late with their inclusion in influential toolkits for UNIX workstations. The OSF toolkit, released in 1990 but developed throughout the decade, provided radio button widgets as core components for building consistent interfaces, emphasizing grouped exclusive selections in applications. Concurrently, the OpenLook specification, introduced by and in 1988, also featured radio buttons in its design guidelines, promoting their use in scalable, device-independent UIs and influencing development.

Etymology and Naming Evolution

The term "radio button" originates from the mechanical push-button selectors found on automobile radios in the 1930s and 1940s, which allowed users to tune to preset frequencies by depressing one button while automatically releasing any others, ensuring only a single station was active at a time. This physical mechanism provided a direct for mutually exclusive selection in user interfaces, where selecting one option deselects all others in a group. The evokes the locking and releasing behavior of these analog controls, adapting a familiar real-world interaction to digital contexts. In early computing documentation, the terminology varied before standardization. For instance, Apple's 1984 "Inside Macintosh" reference manual explicitly used "radio button" to describe these controls within the Macintosh Toolbox, marking one of the earliest printed uses in commercial GUI development. Concurrently, some systems employed alternative names; Microsoft Windows guides from the mid-1980s referred to them as "option buttons" to emphasize their role in selecting from a set of choices. This inconsistency reflected the nascent stage of GUI design, where terms were not yet uniform across platforms. By the 1990s, "radio button" had emerged as the dominant and standardized term in literature and toolkits, influenced by influential works in human-computer interaction. Researchers like Brad A. Myers, in his 1980s and 1990s papers on interface tools and widgets, consistently employed and analyzed "radio buttons" as a core interaction technique, contributing to its widespread adoption. The persistence of the term in modern digital environments underscores its evocative power, bridging analog hardware metaphors with software controls despite the absence of physical toggling.

Technical Implementation

In Web Technologies

In web technologies, radio buttons are implemented using the HTML <input> element with the type attribute set to "radio". This element allows users to select one option from a mutually exclusive group, where selecting one deselects all others in the same group. The radio button was introduced in the HTML 2.0 specification, published as RFC 1866 in November 1995, as part of the form input types to enable single-choice selections within forms. Key attributes include name, which groups related radio buttons—buttons sharing the same name value form a single selectable set—and value, which specifies the data submitted for the selected option. For instance, multiple <input type="radio"> elements with name="color" and distinct value attributes (e.g., "red", "blue") ensure only one color is chosen. Additional attributes control behavior and state: checked sets a default selection (only one per group), while disabled renders the button non-interactive and excludes it from form submission. Event handling, such as validation on selection, is typically managed via , using events like or on the input . For example, adding an onchange handler can trigger custom logic when a radio button is selected. Radio buttons integrate seamlessly with forms for submission via HTTP methods like or GET. Only the name and value of the selected radio button in each group are sent to the server; unselected ones are omitted. If no button is selected, the group contributes no . Here's an example of a grouped set within a form:
html
<form action="/submit" method="post">
  <input type="radio" id="option1" name="choice" value="yes" checked>
  <label for="option1">Yes</label>
  <input type="radio" id="option2" name="choice" value="no">
  <label for="option2">No</label>
  <button type="submit">Submit</button>
</form>
Upon submission, if "No" is selected, the server receives choice=no. The element evolved with HTML5, finalized in 2014, which introduced implicit ARIA semantics: the <input type="radio"> has an inherent role="radio" for better accessibility support in assistive technologies.

In Desktop and Mobile Applications

In desktop applications, radio buttons are implemented as native controls across major operating systems to provide mutually exclusive selection options. On Windows, the Win32 API supports radio buttons, also known as option buttons, which allow users to choose one from a set of related choices, with the control handling group exclusivity through parent-child relationships in dialog templates. For .NET-based applications, the Windows Presentation Foundation (WPF) includes the RadioButton control, enabling custom theming via styles and templates to align with application visuals while maintaining native behavior. In macOS environments using the , radio buttons are created with NSButton instances configured to the radio button type, often grouped for single selection, or via NSMatrix for matrix-based layouts in legacy contexts. On , the toolkit provides the GtkRadioButton class, which supports grouping via shared radio button groups to enforce one active selection, while the offers the QRadioButton widget for similar cross-desktop compatibility. These desktop implementations adhere to established UI standards, with radio buttons first formalized in Apple's 1987 as grouped controls for mutually exclusive choices among options, and in Microsoft's 1990s Windows Interface Guidelines as option buttons for limited mutually exclusive choices. In mobile applications, radio button equivalents are designed for touch interaction, prioritizing larger hit areas over precise mouse-based selection. On with UIKit, native radio buttons are absent; instead, UISegmentedControl serves as a common variant, presenting discrete segments for single selection in horizontal layouts suitable for limited options. For , the RadioButton class is paired with RadioGroup to manage a set of buttons where only one can be checked at a time, integrating seamlessly into layouts like LinearLayout for form-based selections. Mobile guidelines emphasize touch-friendly sizing to reduce errors, recommending a minimum of 44 by 44 points for targets to accommodate finger taps, and at least 48 by 48 density-independent pixels (dp) for to ensure across devices. Cross-platform frameworks facilitate radio button use while adapting to native guidelines. In , the Radio widget automatically adjusts appearance—using on and Cupertino styles on —to provide consistent single-selection behavior across platforms. enables radio buttons through input elements but supports platform-specific theming via CSS to mimic native desktop looks on Windows, macOS, and .

Standards and Accessibility

Unicode Representation

The Unicode standard provides symbols for representing radio buttons in non-interactive contexts, such as plain text, documentation, and static icons. The selected state is typically denoted by the black circle (U+25CF ●), while the unselected state uses the white circle (U+25CB ○). These geometric shapes, part of the Geometric Shapes block (U+25A0–U+25FF), were introduced in Unicode version 1.1 in June 1993. These circles serve as fallback representations in text-based environments or emojis, where full graphical elements are unavailable, but they are not intended for interactive use. Support for these symbols is available in fonts such as Segoe UI Symbol, enabling reliable display across systems. Radio button symbols differ from related characters, like the empty square (U+2610 ☐) and checked (U+2611 ☑), which evoke checkboxes rather than the circular radio design; both the circles and es originated in Unicode 1.1. In version 6.0 (October 2010), a dedicated radio button character (U+1F518 🔘) was added to the block, specifically depicting the selected state with a filled circle and dot. The inclusion of these UI-related symbols traces back to the early development of ISO/IEC 10646 in the , which adopted and expanded to standardize graphical elements for global text encoding.

Guidelines for Inclusive Design

To ensure radio buttons are accessible to users with disabilities, adherence to the Web Content Accessibility Guidelines (WCAG) at Level AA is essential, particularly for keyboard navigation and visual contrast. WCAG 2.1 Success Criterion 2.1.1 (Keyboard, Level A) requires that all functionality, including radio button selection, be operable through a keyboard interface without requiring specific timings for individual keystrokes, allowing users to navigate to a radio button using the TAB key to focus and the SPACEBAR to select it, while arrow keys enable movement within a grouped set of options. Additionally, Success Criterion 1.4.3 (Contrast Minimum, Level AA) mandates a contrast ratio of at least 4.5:1 between text and its background, extending to the labels and indicators of radio buttons to support users with low vision. ARIA (Accessible Rich Internet Applications) attributes enhance the semantic structure of radio buttons for assistive technologies, promoting compatibility across diverse user agents. The role="radio" attribute identifies an element as a radio button within a group, while aria-checked="true" or "false" dynamically indicates the selection state, ensuring screen readers announce changes accurately. For grouping multiple radio buttons, the parent container should use role="radiogroup" with aria-labelledby referencing an element that provides a descriptive label for the entire set, such as a heading or visible text, to convey the purpose and options clearly. Screen reader support relies on explicit labeling to prevent ambiguity and ensure navigable announcements for users who are blind or have low vision. Each radio button must be associated with a visible WCAG 2.2, published in October 2023, introduced updates specifically addressing touch interactions and cognitive accessibility for form controls like radio buttons. Success Criterion 2.5.8 (Target Size (Minimum), Level ) requires touch , including radio button hit areas, to be at least 24 by 24 CSS pixels to accommodate users with motor impairments on mobile devices. Furthermore, enhancements in criteria like 3.3.7 (Redundant Entry, Level A) and improved grouping practices help reduce cognitive load by minimizing repetitive actions and clearly delineating option sets, benefiting users with cognitive disabilities. For low-vision users, representations can serve as fallbacks when visual rendering fails, though detailed encoding is covered elsewhere.

Usage and Best Practices

Application in Forms and Interfaces

Radio buttons are widely applied in user interfaces for scenarios requiring a single selection from a small set of mutually exclusive options, typically ranging from 2 to 6 choices to maintain scannability and reduce decision fatigue. In preference settings, they enable users to choose between options like notification frequency (e.g., daily, weekly, never) or display themes (e.g., light or dark mode). Quizzes often employ radio buttons for multiple-choice questions where only one answer is correct, ensuring clear exclusivity. In e-commerce checkout processes, they facilitate selections such as shipping methods (e.g., standard, express, or overnight), streamlining the decision without allowing multiple picks. Design patterns for radio buttons emphasize clarity and ease of interaction, with vertical layouts preferred for lists exceeding two options to improve and prevent issues on various screen sizes. Labels are conventionally positioned to the right of the radio button in left-to-right reading languages, making the entire label clickable and associating it closely with the control for better . Horizontal layouts may be used sparingly for binary choices (e.g., /no), but require ample spacing to avoid visual crowding. For complex groups involving conditional follow-ups, progressive disclosure patterns reveal additional fields or sub-options only after an initial selection, minimizing initial interface clutter while guiding users through layered decisions. In surveys, radio buttons integrate seamlessly with Likert scales, presenting ordinal response options (e.g., strongly agree to strongly disagree) as a horizontal or vertical row for each statement, allowing precise measurement of attitudes without multi-selection errors. , or multi-step forms, leverage radio buttons in sequential panels for tasks like user onboarding, where each step presents exclusive choices before advancing. However, for larger lists exceeding six options, radio buttons should be avoided in favor of dropdown menus to conserve space and prevent overwhelming users with excessive vertical .

Advantages, Limitations, and Alternatives

Radio buttons offer several advantages in , particularly for scenarios requiring a single selection from a small set of mutually exclusive options. Their visual exclusivity—achieved through circular indicators that deselect others upon selection—provides immediate , making it clear that only one is possible. This design reduces compared to hidden options in dropdowns, as all alternatives remain permanently visible, allowing users to scan and compare them efficiently. For or limited choices (typically 2–5 options), radio buttons facilitate quick decisions with low mental effort, enhancing task completion speed. Despite these strengths, radio buttons have notable limitations that can impact , especially in constrained or complex contexts. They are space-inefficient for lists exceeding 5–10 options, often leading to requirements that obscure the full set and increase cognitive by overwhelming users with visual clutter. Without a selection or an explicit "none" option, interfaces risk frustrating users who may not realize a choice is mandatory, potentially causing submission errors or abandonment. On devices, small default hit areas exacerbate touch inaccuracies, particularly for users with motor impairments, unless enlarged targets are implemented. Additionally, standard radio buttons lack a built-in null state, requiring custom coding to allow no selection, which complicates development and compliance. When radio buttons are unsuitable, several alternatives better suit specific use cases to optimize . For multiple independent selections, checkboxes allow users to choose any combination without exclusivity, reducing confusion in scenarios like preference lists. Binary on/off choices benefit from toggle switches, which provide a more compact, -state interface ideal for settings like notifications. Dropdown menus or select elements are preferable for 7+ options where space is limited, though they should include searchability for long lists to mitigate visibility issues. In mobile applications, segmented controls—horizontal button groups—offer a touch-friendly replacement for 2–4 options, minimizing scrolling and improving scannability. UX studies emphasize selecting controls based on option count and selection type to minimize errors; for instance, replacing text inputs with radio buttons for predefined single choices can streamline validation and lower input mistakes by guiding users toward constrained responses.

References

  1. [1]
    Guidelines for radio buttons - Windows apps | Microsoft Learn
    Feb 26, 2025 · Radio buttons, also called option buttons, let users select one option from a collection of two or more mutually exclusive, but related, options.
  2. [2]
    <input type="radio"> - HTML - MDN Web Docs
    Sep 18, 2025 · <input> elements of type radio are generally used in radio groups—collections of radio buttons describing a set of related options.Missing: UI | Show results with:UI
  3. [3]
    Radio buttons | U.S. Web Design System (USWDS)
    Radio buttons are a common way to allow users to make a single selection from a list of options. Since only one radio button can be selected at a time.<|control11|><|separator|>
  4. [4]
    Radio Buttons UX Design. by Nick Babich - UX Planet
    May 16, 2016 · Radio buttons are an essential element of forms. They are used when there is a list of two or more options that are mutually exclusive and ...
  5. [5]
    A History of the GUI - Ars Technica
    May 4, 2005 · I'll be presenting a brief introduction to the history of the GUI. The topic, as you might expect, is broad, and very deep.Apple · Other Guis During The 1980s · More Guis Of The 1980s
  6. [6]
    Radio button – Material Design 3
    Radio buttons let people select one option from a set of options. Use radio buttons (not switches) when only one item can be selected from a list.design_servicesGuidelines · styleSpecs · accessibility_newAccessibility
  7. [7]
    What's the size (diameter) of default radio button? - Stack Overflow
    Nov 25, 2015 · The reason is probably that there is not a default size. Different browsers render them differently, which is the case for a lot of things in HTML.How to change the size of the radio button using CSS?Define radio button size independently of screen resolutionMore results from stackoverflow.com
  8. [8]
    Radio button – Material Design 3
    Radio buttons let people select one option from a set of options. Use radio buttons (not switches) when only one item can be selected from a list.
  9. [9]
    The shading cue in context - PMC - NIH
    Dec 21, 2010 · A radio button, or option button, is a type of graphical user ... They were named after the physical buttons used on older car radios ...
  10. [10]
    Checkboxes vs. Radio Buttons - NN/G
    Sep 26, 2004 · A radio button should be a small circle that has a solid circle inside it when selected. Visually present groups of choices as groups, and ...
  11. [11]
    Radio buttons - Material Design 2
    Radio buttons allow the user to select one option from a set. Use radio buttons when the user needs to see all available options.
  12. [12]
    Toggles | Apple Developer Documentation
    A radio button is a small, circular button followed by a label. Typically displayed in groups of two to five, radio buttons present a set of mutually exclusive ...
  13. [13]
    What UI first distinguished radio buttons from checkboxes with ...
    Jun 23, 2025 · The Apple Lisa used square boxes for both radio buttons (single selection) and checkboxes (multiple selection) in 1983. The Macintosh used round ...
  14. [14]
    [PDF] Motif Programming Manual - O'Reilly Media
    This book describes how to write applications using the Motif toolkit from the Open Software Foundation (OSF). The. Motif toolkit is based on the X Toolkit ...<|control11|><|separator|>
  15. [15]
    OPEN LOOK Versus Solaris Motif Toolkits - Oracle Help Center
    For example, the OPEN LOOK buttons are round whereas the Solaris Motif buttons are square. The shading applied to buttons and other objects for a three ...Missing: 1980s | Show results with:1980s
  16. [16]
  17. [17]
    [PDF] Inside_Macintosh_Vol_1_1984.pdf - Bitsavers.org
    ... INSIDE MACINTOSH: A ROAD t-1AP. /ROAD.MAP/ROAD. See Also: Pascal Reference ... Radio Button 1. @ Radio Button 2 o Radio Button 3. ABOUT THE CONTROL MANAGER.
  18. [18]
    [PDF] Windows User Experience Interaction Guidelines
    Sep 29, 2010 · ... Radio buttons allow users to make a choice among a set of mutually ... option buttons Left, Right, and so on, not Left alignment or ...
  19. [19]
  20. [20]
  21. [21]
    RFC 1866 Hypertext Markup Language - IETF
    ... Radio Button: INPUT TYPE=RADIO An <INPUT> element with `TYPE=RADIO ... In 1992, Dan Connolly wrote the HTML Document Type Definition (DTD) and a brief HTML ...
  22. [22]
  23. [23]
    ARIA: radio role - MDN Web Docs - Mozilla
    Jun 23, 2025 · A radio button is a checkable input that when associated with other radio buttons, only one of which can be checked at a time. The radio buttons ...Missing: UI | Show results with:UI
  24. [24]
    Radio Buttons - Win32 apps | Microsoft Learn
    Feb 9, 2021 · Radio buttons allow users to choose one of mutually exclusive options, like channel presets on radios, where only one option can be selected.Is This The Right Control? · Guidelines · Labels
  25. [25]
    RadioButton - WPF - Microsoft Learn
    May 7, 2025 · Learn how RadioButton controls are usually grouped together to offer users a single choice among several options.
  26. [26]
    Using Radio Buttons - Apple Developer
    Oct 16, 2014 · Using Radio Buttons. A radio button displays the setting of something in your application and is part of a group in which only one button ...
  27. [27]
    Gtk.RadioButton
    A GtkRadioButton is a single radio button, part of a group; when one is selected, others are deselected, providing a choice from many options.
  28. [28]
    QRadioButton Class | Qt Widgets | Qt 6.10.0
    A QRadioButton is an option button that can be switched on (checked) or off (unchecked). Radio buttons typically present the user with a "one of many" choice.
  29. [29]
    [PDF] The Windows Interface Guidelines — A Guide for Designing Software
    Feb 13, 1995 · Option Buttons. An option button, also referred to as a radio button, represents a single choice within a limited set of mutually exclusive ...
  30. [30]
    UISegmentedControl | Apple Developer Documentation
    A horizontal control that consists of multiple segments, each segment functioning as a discrete button.Missing: mobile: Android RadioButton RadioGroup
  31. [31]
    Add radio buttons to your app | Views - Android Developers
    Feb 11, 2025 · Radio buttons let the user select one option from a set of mutually exclusive options. Use radio buttons if the user needs to see all available options listed.Missing: iOS UIKit UISegmentedControl,
  32. [32]
    Make apps more accessible | App quality - Android Developers
    Jan 3, 2024 · We recommend that each interactive UI element have a focusable area, or touch target size, of at least 48dpx48dp. Larger is even better. For a ...
  33. [33]
    Radio class - material library - Dart API - Flutter
    Creates an adaptive Radio based on whether the target platform is iOS or macOS, following Material design's Cross-platform guidelines. const. Properties.
  34. [34]
    None
    ### Summary for U+25CB WHITE CIRCLE and U+25CF BLACK CIRCLE
  35. [35]
    Unicode characters supported by the Segoe UI Symbol font
    U+25CB, WHITE CIRCLE. U+25CC, DOTTED CIRCLE. U+25CD, CIRCLE WITH VERTICAL FILL. U+25CE, BULLSEYE. U+25CF ... REGIONAL INDICATOR SYMBOL LETTER U. U+1F1FB, REGIONAL ...
  36. [36]
    Unicode Character 'BALLOT BOX' (U+2610) - FileFormat.Info
    Unicode Character 'BALLOT BOX' (U+2610) ; Mirror, N ; Index entries, BOX, BALLOT BALLOT BOX ; See Also, white square U+25A1 ; Version, Unicode 1.1.0 (June, 1993) ...
  37. [37]
    Geometric Shapes – Test for Unicode support in Web browsers
    Test your Web browser and fonts for the ability to display the Unicode Geometric Shapes range of characters. Part of Alan Wood's Unicode Resources.
  38. [38]
  39. [39]
  40. [40]
    Labeling Controls | Web Accessibility Initiative (WAI) - W3C
    The aria-label attribute can also be used to identify form controls. This approach is well supported by screen readers and other assistive technology, but, ...Associating labels explicitly · Hiding label text
  41. [41]
  42. [42]
  43. [43]
  44. [44]
    Web Content Accessibility Guidelines (WCAG) 2.2 - W3C
    Dec 12, 2024 · Web Content Accessibility Guidelines (WCAG) 2.2 covers a wide range of recommendations for making web content more accessible.How to Meet WCAG (Quickref... · Success Criterion 1.3.1 · WCAG22 historyMissing: radio | Show results with:radio
  45. [45]
    Lesson 22: Mastering RadioButton Controls in VB2022 - VBTutor.net
    Common Use Cases. Radio buttons are ideal for: Application, Example. User Profiles, Gender selection (Male/Female/Other). Settings, Theme preference (Light/Dark).Lesson 22: Mastering... · 22.2 Practical Radiobutton... · Radiobutton Control Summary
  46. [46]
    Radio button design: easy selection and decision-making - Justinmind
    Sep 13, 2024 · When designing your mobile radio button, pay close attention to the size of the button, as well as the size of the clickable area. This is very ...
  47. [47]
    Radio button - Carbon Design System
    Radio button labels are positioned to the right of their inputs in languages that read left to right. If there is a radio button grouping, they can be laid out ...
  48. [48]
    Radio Button | NewsKit design system
    Do put labels on the right of the radio buttons. When grouping multiple radio buttons, put the label on the right. This makes them easier to find, especially ...<|separator|>
  49. [49]
    Yes/No radio buttons: Vertical or horizontal Alignment
    May 8, 2012 · I think a horizontal layout with generous space between the radio buttons will look more polished than a vertical layout with generous space ...Radio Buttons Direction [closed] - User Experience Stack ExchangeShould radio options be displayed vertically or horizontally?More results from ux.stackexchange.com
  50. [50]
    Radio - PatternFly
    If space is limited, you can also use progressive disclosure by nesting other controls underneath a radio button. Example of nested control radio buttons.Missing: horizontal | Show results with:horizontal
  51. [51]
    Radio Button UI Design: Best Practices, Examples & Pitfalls - Eleken
    Apr 28, 2025 · Learn how to design effective radio button UIs with best practices, real-world examples, and common pitfalls to avoid.Radio Button Ui Examples... · Radio Buttons With Icons For... · Accessibility-Focused Design<|control11|><|separator|>
  52. [52]
    Rating Scales in UX Research: Likert or Semantic Differential? - NN/G
    Jun 7, 2020 · Likert and semantic differential are two types of rating scales often used in UX surveys. They often get confused because the differences between them are ...
  53. [53]
    Drop-Down Usability - Drop-Down UX – Baymard Institute
    Jan 28, 2025 · For drop-downs with few options, a radio button interface will often be a better choice, as it doesn't require users to open the drop-down just ...Missing: Likert wizards
  54. [54]
    7 Rules of Using Radio Buttons vs Drop-Down Menus - UX World
    Feb 21, 2024 · The given set of rules will help you to decide between two controls, radio buttons, and drop-down menus while designing your forms.
  55. [55]
    Radio Buttons: Always Select One? - NN/G
    Jun 1, 2014 · The main guideline is to select one radio button by default, as it gives users control and expedites tasks. Not selecting one can be confusing.Missing: interfaces | Show results with:interfaces
  56. [56]
    Impact of Data Entry Interface Design on Cognitive Workload ... - NIH
    Radio buttons should be used with less than five data selection options and over use of radio buttons increases cognitive workload secondary to information ...
  57. [57]
    Website Forms Usability: Top 10 Recommendations - NN/G
    May 1, 2016 · Avoid drop-downs when there are only 2 or 3 options that could be displayed as radio buttons (which require only a single click or tap).