Skip to main content
A newer version of this page is available. .

SchedulerViewRepository.GanttView Property

Gets an object that defines the settings of the scheduler’s Gantt view.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Content, XtraSerializationFlags.DefaultValue)]
public GanttView GanttView { get; }

Property Value

Type Description
GanttView

A GanttView object that is the Gantt View in the scheduling area.

Remarks

The Gantt View enables end-users to schedule and display tasks with a timeline, establish task dependencies and show the completion status of a task. In this mode, tasks (another name for appointments) are displayed as horizontal bars along the timescales. Lines with arrows indicate task dependencies, and a dark color within the appointment body indicates the completion percentage. Use the TimelineView.Scales property to specify time scales displayed simultaneously.

Use the GanttView property to customize the settings of the Gantt View. To make the SchedulerControl display information using the Gantt View, set the SchedulerControl.ActiveViewType property to SchedulerViewType.Gantt.

The settings of the Gantt View can also be accessed via the SchedulerControl.GanttView property.

See Also