Skip to main content

TimelineView Class

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public class TimelineView :
    SchedulerViewBase,
    IWpfTimelineViewProperties,
    ITimelineViewProperties,
    ISchedulerViewPropertiesBase,
    ISchedulerPropertiesBase,
    INotifyPropertyChanging,
    INotifyPropertyChanged

#Returned By

Properties that return TimelineView instances:

#Remarks

The scheduler control has five view types that provide different arrangements and formats for scheduling and viewing appointments. The TimelineView class represents a Timeline View. This type of view displays appointments as horizontal bars along the timescales, and provides end-users with a clearer overview for scheduling purposes.

DXScheduler_TimelineView

To specify the time scales simultaneously displayed within the Timeline View, use the TimelineView.Scales property.

All views are stored in the scheduler control's view repository, which can be accessed via the SchedulerControl.Views property. To access the settings of the Timeline View, use the SchedulerViewRepository.TimelineView or SchedulerControl.TimelineView property.

#Examples

This example demonstrates how to customize the Timeline View within the SchedulerControl. To do this, it is necessary to modify the TimelineView object accessed via the SchedulerControl.TimelineView property.

See Also