TimelineView.ZoomRange Property
Allows you to limit the zoom level. This is a dependency property.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
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.