Hi,
I have a large time period from 2010/1/1 to 2015/1/1 and I have a second interval support second for large range time
When I zoom in into the intervals, the project became stopped because of a System.OutOFMemoryException Error.
My questions :
1- Dose I use virtualization in correct way ?
2- Does the RadTimeLine Support the second interval for large period or my code is wrong?
My code :
<telerik:RadTimeline x:Name="RadTimeline1"
PeriodStart="{Binding StartDate, Mode=TwoWay}"
PeriodEnd="{Binding EndDate, Mode=TwoWay}"
StartPath="Date"
DurationPath="Duration"
IsSelectionEnabled="True"
SelectionMode="Extended"
VirtualizingPanel.IsVirtualizing="True"
ItemsSource="{Binding Data}">
<telerik:RadTimeline.Intervals>
<telerik:YearInterval />
<telerik:MonthInterval />
<telerik:WeekInterval />
<telerik:DayInterval />
<telerik:HourInterval />
<telerik:MinuteInterval />
<telerik:SecondInterval VirtualizingPanel.IsVirtualizing="True"/>
</telerik:RadTimeline.Intervals>
</telerik:RadTimeline>