Back to Devexpress

DxSchedulerTimelineView.VerticalResourceCellWidth Property

blazor-devexpress-dot-blazor-dot-dxschedulertimelineview-3035fb3d.md

latest1.7 KB
Original Source

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

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">
    <DxSchedulerTimelineView CellMinWidth="70" 
                             CellMinHeight="50" 
                             LastAppointmentIndent="3" 
                             ResourceCaptionOrientation="Orientation.Horizontal" 
                             VerticalResourceCellWidth="80" />
</DxScheduler>

See Also

DxSchedulerTimelineView Class

DxSchedulerTimelineView Members

DevExpress.Blazor Namespace