Hi,
Is it possible EventTitle starts building from bottom instead of top?. For example if I bind 5 events to timeline control, all are displayed at top with line which come down to zoombar. Instead if I want to display Items starts binding from bottom i.e. starts near to zoombar instead from top
The other thing we support is set the series position to Bottom (Position=”BottomOrRight”). I think it is still not what you are exactly looking for, but you can try this code:
<Grid x:Name="LayoutRoot" Background="White">
<Grid.Resources>
<Style x:Key="SceneStyle" TargetType="ig:Scene">
<Setter Property="IsTabStop" Value="False"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ig:Scene">
<Grid>
<ig:StripesPanel x:Name="StripesPanelElement" />
<ig:GridLinesPanel x:Name="GridLinesPanelElement" />
<Grid Style="{TemplateBinding SceneGridStyle}">
<Grid.RowDefinitions>
<RowDefinition Height="0" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<ig:EventTitlesPanel x:Name="TitlesPanelTopOrLeftElement"
Position="TopOrLeft" />
<Grid x:Name="AxisPaneElement" Grid.Row="1" />
<ig:EventTitlesPanel x:Name="TitlesPanelBottomOrRightElement"
Position="BottomOrRight"
Grid.Row="2" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Grid.Resources>
<ig:XamTimeline SceneStyle="{StaticResource SceneStyle}">
<ig:XamTimeline.Series>
<ig:NumericTimeSeries Position="BottomOrRight">
<ig:NumericTimeSeries.Entries>
<ig:NumericTimeEntry Time="1" Title="Title 1" />
<ig:NumericTimeEntry Time="2" Title="Title 2" />
</ig:NumericTimeSeries.Entries>
</ig:NumericTimeSeries>
</ig:XamTimeline.Series>
</ig:XamTimeline>
Thanks for the reply, Actually I might have not explained correct scenario what we need. I tried the code snipped mentioned above and I got result which Displays Event Entry like Title 1, Title 2, Title 3, Title 4 and it starts from Top of the control and line comes down towards zoombar.
Now is it possible that this Event Entry starts binding from Bottom instead of Top, which means it should starts near to Zoombar and goes towards top i.e. Title 1 shold be the nearest to zoombar and then Title 2, 3 and 4.
In short we need this Event Entry should starts from bottom not from Top. I have attached image named "TimeViewExpected" which shows Expected Scenario for your reference please.
Let me know if any more information required.
Try using this code:
<ig:NumericTimeSeries>