This question is locked. New answers and comments are not allowed.
Hello,
I'm having some strange issues with the zoom functionality. As you can see in the attached files, the scroll wheel only allows the timeline to zoom in so far, while adjusting via the scrollbar allows the user to zoom in all the way. After experimenting with this for some time, I've been unsuccessful in solving the problem.
I've constructed the timeline almost exactly as it's done in the example, the code is listed below. It's probably something small that I'm missing.
Thanks.
I'm having some strange issues with the zoom functionality. As you can see in the attached files, the scroll wheel only allows the timeline to zoom in so far, while adjusting via the scrollbar allows the user to zoom in all the way. After experimenting with this for some time, I've been unsuccessful in solving the problem.
I've constructed the timeline almost exactly as it's done in the example, the code is listed below. It's probably something small that I'm missing.
<
telerik:RadTimeline
x:Name
=
"m_oErrorTimeline"
Grid.Row
=
"3"
Height
=
"250"
StartPath
=
"Date"
PeriodStart
=
"{Binding StartDate, Mode=TwoWay}"
PeriodEnd
=
"{Binding EndDate., Mode=TwoWay}"
VisiblePeriodStart
=
"{Binding StartDate}"
VisiblePeriodEnd
=
"{Binding EndDate}"
ItemsSource
=
"{Binding Data}"
ItemTemplateSelector
=
"{StaticResource ItemTemplateSelector}"
>
<
telerik:RadTimeline.Intervals
>
<
telerik:MonthInterval
/>
<
telerik:DayInterval
/>
<
telerik:HourInterval
/>
<
telerik:MinuteInterval
/>
<
telerik:SecondInterval
/>
<
telerik:MillisecondInterval
/>
</
telerik:RadTimeline.Intervals
>
</
telerik:RadTimeline
>
Thanks.