Skip to main content
A newer version of this page is available. .

DxCalendar<T>.HeaderCssClass Property

Specifies the name of the CSS class applied to the Calendar’s header.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string HeaderCssClass { get; set; }

Property Value

Type Description
String

The CSS class name.

Remarks

To define the appearance of the Calendar’s header, assign a CSS class name to the HeaderCssClass property.

<DxCalendar SelectedDate="DateTime.Today"
            HeaderCssClass="bg-info" />

Header CSS Class for the Calendar

For more information, see the following help topic: CSS Classes.

See Also