or
<TextBlock Text="{Binding CurrentSlide.Name}" /><TextBlock Text="{Binding CurrentSlide.Description}" /> // Would like to overlay Transitions onto the Listbox below when the CurrentSlide changes. Listbox uses a canvas to position and render elements.<ListBox x:Name="SlideList" BorderBrush="Transparent" BorderThickness="0" ItemsSource="{Binding CurrentSlide.Elements}" SelectionChanged="SlideList_SelectionChanged" > <ListBox.ItemsPanel> <ItemsPanelTemplate> <Canvas x:Name="editCanvas" Background="{Binding CurrentSlide.Background, Converter={StaticResource BackgroundConverter}}" /> </ItemsPanelTemplate> </ListBox.ItemsPanel></ListBox>

BarSeriesDefinition barDefinition = new BarSeriesDefinition(); barDefinition.Appearance.Fill = new SolidColorBrush( Colors.Blue );ctrlLaneGraph.DefaultSeriesDefinition = barDefinition; SeriesMapping seriesMapping = new SeriesMapping();seriesMapping.LegendLabel = "Number of Items";seriesMapping.SeriesDefinition = new SplineSeriesDefinition(); seriesMapping.ItemMappings.Add(new ItemMapping("ItemStart", DataPointMember.XValue));seriesMapping.ItemMappings.Add(new ItemMapping("ItemPosition", DataPointMember.YValue)); seriesMapping.SeriesDefinition = barDefinition; ctrlLaneGraph.SeriesMappings.Add(seriesMapping); ctrlLaneGraph.ItemsSource = ItemPosisionList; ctrlLaneGraph.DefaultView.ChartArea.AxisX.LayoutMode = AxisLayoutMode.Auto;