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
2805
how to remove timeline series legend
posted

Hi there,

Since we only have 1 datetime series, we want to hide the legend. How could we make it?

Thanks

Parents
No Data
Reply
  • 17605
    Verified Answer
    posted

    You can use this code: 

            <ig:XamTimeline x:Name="timeline">

                <ig:XamTimeline.LegendStyle>

                    <Style TargetType="ig:TimelineLegend">

                        <Setter Property="Visibility" Value="Collapsed" />

                    </Style>

                </ig:XamTimeline.LegendStyle>

            </ig:XamTimeline>

     

Children