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

GanttView.Scales Property

Provides access to a collection of time scales displayed in the Gantt view.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, false, true)]
public TimeScaleCollection Scales { get; }

Property Value

Type Description
TimeScaleCollection

A TimeScaleCollection object containing time scales for this view.

Remarks

Use this property to access the time scales collection, and specify the TimeScale elements of the current view. The available time scales are used in the visible time interval calculations, and you may control whether a particular time scale should be considered via the TimeScale.Enabled property. The display options can be customized via the TimeScale.DisplayFormat and TimeScale.Width properties. You may hide a specific time scale by setting the TimeScale.Visible property
to false.

The most detailed time scale that is enabled and displayed visually as a basis for the scales is returned by the TimelineView.GetBaseTimeScale method.

See Also