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
535
How to configure Click event for every Timeline Event title
posted

I have been using  XamTimLine control for a while.Is there any way to trigger click event when the user clicks "Event Title"?.I have tried with MouseLeftButtonDown event but it is not getting triggered.Pls have a look at the code i have tried. I have also attached the sample snapshot for understanding.

<igtl:XamTimeline.Series>
                <igtl:DateTimeSeries Title="Input Events" Fill="Red" Position="TopOrLeft" MouseLeftButtonDown="Clicked">
                    <igtl:DateTimeSeries.Entries>
                        <igtl:DateTimeEntry Time="00:00:01" Title="Event 1" Details="Details Time Entry 1" MouseLeftButtonDown="Clicked" ToolTip = "One"/>
                        <igtl:DateTimeEntry Time="00:00:01" Title="Event 2" Details="Details Time Entry 1" MouseLeftButtonDown="Clicked" ToolTip = "Two"/>
                        <igtl:DateTimeEntry Time="00:00:01" Title="Event 3" Details="Details Time Entry 1" MouseLeftButtonDown="Clicked" ToolTip = "Three"/>
                        <igtl:DateTimeEntry Time="00:00:01" Title="Event 4" Details="Details Time Entry 1" MouseLeftButtonDown="Clicked" ToolTip = "Four"/>
                        </igtl:DateTimeSeries.Entries>
                </igtl:DateTimeSeries>
</igtl:XamTimeline.Series>