Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TimelineView.CellsAutoHeight Property

OBSOLETE

You should use the 'CellsAutoHeightOptions.Enabled' instead

Use the CellsAutoHeightOptions.AutoHeightMode property to specify whether resources change their height automatically.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v24.2.dll

NuGet Package: DevExpress.Win.Scheduler

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You should use the 'CellsAutoHeightOptions.Enabled' instead", false)]
public bool CellsAutoHeight { get; set; }

#Property Value

Type Description
Boolean

true to switch auto height adjustment on; otherwise, false.

#Remarks

The Timeline View and the Gantt View can automatically change the resource height to fit its content in grouped mode (SchedulerControl.GroupType is set to the SchedulerGroupType.Resource). While the number of resources that are simultaneously displayed on the screen is constant and the number of appointments assigned to each resource is different, the height of each resource can be automatically changed to fit resource appointments and free space can be reallocated to display as many appointments as possible.

CellsAutoHeight

When the CellsAutoHeight option is off, some appointments in a row can be hidden. In this situation, you can scroll a particular row if the TimelineView.TimelineScrollBarVisible is set to true to see all appointments. To adjust the number of visible appointments, you can specify the SchedulerViewBase.AppointmentHeight value.

See Also