Skip to main content
All docs
V25.2
  • DxSchedulerTimelineView.VerticalResourceCellWidth Property

    Specifies the resource cell width when appointments are grouped and 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 - Horizontally Aligned Resources

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