Skip to main content
All docs
V25.2
  • 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

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

    Property Value

    Type Default Description
    Nullable<Int32> null

    The cell width in pixels.

    Remarks

    The following example sets the resource cell width to 80:

    Blazor Scheduler - Vertically Aligned Resources

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