Skip to main content
All docs
V24.2

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.ZoomRange Property

Allows you to limit the zoom level. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v24.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

#Declaration

public TimeSpanRange ZoomRange { get; set; }

#Property Value

Type Description
TimeSpanRange

A DevExpress.Mvvm.TimeSpanRange value that specifies the zoom level limit.

#Remarks

The Zoom property value is a System.TimeSpan value that specifies the time interval per screen pixel.

The image below illustrates the TimelineView with the Zoom property set to 30 seconds. Each 30-minute span occupies 60 device-independent pixels (2 DIP for each minute).

The code snippet below illustrates how to limit the minimum Zoom value to 10 seconds (per DIP).

<dxsch:TimelineView ZoomRange="00:00:10-00:00:00">
</dxsch:TimelineView>

The ActualZoomRange property returns the actual zoom level limit based on the VisibleIntervals property value and the current viewport’s width. The ViewportInterval property returns the currently visible interval.

Note

The ZoomRange property is not in effect if the ViewMode property is set to Legacy.

See Also