Skip to main content
All docs
V25.1
  • DxRadioGroup<TData, TValue>.Layout Property

    Specifies how to arrange Radio Group items (vertically or horizontally).

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(RadioGroupLayout.Vertical)]
    [Parameter]
    public RadioGroupLayout Layout { get; set; }

    Property Value

    Type Default Description
    RadioGroupLayout Vertical

    A RadioGroupLayout enumeration value.

    Available values:

    Name Description
    Vertical

    Sets the vertical orientation.

    Horizontal

    Sets the horizontal orientation.

    Remarks

    The following code snippet changes the Radio Group layout to Horizontal.

    <DxRadioGroup Items="@Languages"
                  @bind-Value="@PreferredLanguage"
                  Layout="@RadioGroupLayout.Horizontal">
    </DxRadioGroup>
    
    @code {
        string PreferredLanguage { get; set; } = "English";
        IEnumerable<string> Languages = new[] { "English", "简体中文", "Español", "Français", "Deutsch" };
    }
    

    RadioGroup - Layout

    Run Demo: RadioGroup - Layout

    See Also