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
237
xamTimeLine styling
posted

Hello!

I would be very appreciate of someone tells me how can I style the line that goes from axis and connects to eventTitle cloud. Generally I need to manage the color of that line.

Thanks!

Parents
No Data
Reply
  • 895
    posted

    Hello,

    This line is part of the Event Title - its style is set through EventTitle's LineStyle property.

    Here is a link to the style guide for the Event Titles.

    Here is a sample line style:

     

    <Style x:Key="EventTitleStyle" TargetType="ig:EventTitle">
        <Setter Property="LineStyle">
            <Setter.Value>
                <Style TargetType="Line">
                    <Setter Property="StrokeThickness" Value="1" />
                    <Setter Property="Stroke" Value="Black" />
                    <Setter Property="Canvas.ZIndex" Value="-1" />
                </Style>
            </Setter.Value>
        </Setter>
    </Style>
    

     

     

    Here is how to apply the line style:

     

    <ig:XamTimeline EventTitleBottomStyle="{StaticResource EventTitleStyle}"
                    EventTitleTopStyle="{StaticResource EventTitleStyle}">
    

     

     

    Thanks,

    Nikolay

Children