Globalization in Blazor DatePicker

27 Aug 20261 minute to read

The Blazor DatePicker component can be localized. Refer to the Blazor Localization topic to localize Blazor components.

Right-To-Left

The Blazor DatePicker supports RTL (right-to-left) functionality for languages like Arabic and Hebrew. Use the EnableRtl property to set the RTL direction. The component renders based on the system culture.

The following code example initializes the Blazor DatePicker component in RTL mode.

@using Syncfusion.Blazor
@using Syncfusion.Blazor.Calendars

<SfDatePicker TValue="DateTime?" EnableRtl=true></SfDatePicker>

Right to Left in Blazor DatePicker

See also