Skip to main content
All docs
V23.2

DxRadioGroup<TData, TValue>.Layout Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.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 code below 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