Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
79
XamTimeline: display both date AND time on DateTimeAxis
posted

Hi

I have this XamTimeline

<ig:XamTimeline x:Name="MyTimeLine" Grid.Row="1">
            <ig:XamTimeline.Axis>
                <ig:DateTimeAxis Minimum="01/01/10"
                                 AutoRange="False"
                                 Maximum="01/30/10"
                                 ShowLabels="True"
                                 ShowMajorTickMarks="True"
                                 ShowMinorTickMarks="True"
                                 UnitType="Hours"
                                 ShowThumb="True">
                </ig:DateTimeAxis>
            </ig:XamTimeline.Axis>
 </ig:XamTimeline>

I want it to display both date AND time based on the zoom resolution but it seems that the "resolution" is calculated based on the DateTimeAxis range therefore it displays date OR time

Thx