Stretching Content Size to Maximum Width in RadScheduleView DayViewDefinition
Environment
Product | RadScheduleView for WPF |
Version | 2024.4.1111 |
Description
How to stretch the view definition to fill the available space of the RadScheduleView control.
Solution
To extend the content size of the RadScheduleView's active view definition, you can set its MinTimeRulerExtent
property. This property allows you to set the minimum width of the TimeRuler
in pixels when the active view definition's Orientation
property is set to Horizontal. This ensures that the view utilizes the entire width.
Here is an example code snippet to achieve the desired behavior:
<telerik:RadScheduleView x:Name="scheduleView" DataContext="{StaticResource MyViewModel}" AppointmentsSource="{Binding MyAppointments}">
<telerik:RadScheduleView.ViewDefinitions>
<telerik:DayViewDefinition MinTimeRulerExtent="{Binding ElementName=scheduleView, Path=ActualWidth}"/>
</telerik:RadScheduleView.ViewDefinitions>
</telerik:RadScheduleView>