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
636
Odd Fill Behavior
posted

I'm using the XamlTimeline and putting a group of DateTimeSeries objects on it.  Each has a series of DateTimeEvent in turn associated with them. 

I've associated a custom Fill color with each of my series.  Some of the data points that are on the series have my styling, some do not.  I've seen this even in the default styling.

Playing with properties, the ones that aren't getting populated are being populated by the HollowFill color.  I can't find any good documentation on this.  When is it used?  More to the point: How can I STOP it being used?

Thanks,

Mike

 

Parents
No Data
Reply
  • 17605
    Suggested Answer
    posted

    The HollowFill is used when there is no space to show the event title for specific entry. But if you don’t want to use it, you can change the EventPointStyle. Try using:

    <Grid x:Name="LayoutRoot">

            <Grid.Resources>

                <Style x:Name="EventPointStyle" TargetType="igTimeline:EventPoint">

                    <Setter Property="Width" Value="10" />

                    <Setter Property="Stroke" Value="Black"/>

                    <Setter Property="Fill" Value="Green"/>

                    <Setter Property="HollowFill" Value="Green"/>              

                </Style>

            </Grid.Resources>

            <igTimeline:XamWebTimeline EventPointStyle="{StaticResource EventPointStyle}">

    ...

Children