Back to Devexpress

DxSchedulerMonthView.VerticalResourceCellWidth Property

blazor-devexpress-dot-blazor-dot-dxschedulermonthview-1fc164f9.md

latest1.6 KB
Original Source

DxSchedulerMonthView.VerticalResourceCellWidth Property

Specifies the resource cell width when appointments are grouped by date and resource captions are aligned horizontally.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(null)]
[Parameter]
public int? VerticalResourceCellWidth { get; set; }

Property Value

TypeDefaultDescription
Nullable<Int32>null

The cell width in pixels.

|

Remarks

The following example sets the resource cell width to 80:

razor
<DxScheduler @bind-StartDate="@StartDate"
             DataStorage="@DataStorage"
             GroupType="SchedulerGroupType.Date">
    <DxSchedulerMonthView CellMinWidth="120" 
                          CellMinHeight="50" 
                          ResourceCaptionOrientation="Orientation.Horizontal"
                          VerticalResourceCellWidth="80" />
</DxScheduler>

See Also

DxSchedulerMonthView Class

DxSchedulerMonthView Members

DevExpress.Blazor Namespace