or
<UserControl.Resources> <telerik:RadContextMenu x:Key="LimbContextMenu" DataContext="{Binding SelectedLimb}" > <telerik:RadMenuItem Header="Expand" Command="{Binding ExpandItemCommand}" /> <telerik:RadMenuItem Header="Expand to book" Command="{Binding ExpandToBookCommand}" /> <telerik:RadMenuItem Header="Collapse" Command="{Binding CollapseItemCommand}" /> <telerik:RadMenuItem Header="Collapse all" Command="{Binding CollapseAllCommand}" /> <telerik:RadMenuItem Header="Jump to home" Command="{Binding JumpToHomeCommand}" Visibility="{Binding JumpToHomeCommand.IsSupported, Converter={StaticResource BooleanToVisibilityConverter}}"/> </telerik:RadContextMenu></UserControl.Resources><UserControl.Resources> <telerik:RadContextMenu x:Key="LimbContextMenu" > <telerik:RadContextMenu DataContext="{Binding SelectedLimb}"> <telerik:RadMenuItem Header="Expand" Command="{Binding ExpandItemCommand}" /> <telerik:RadMenuItem Header="Expand to book" Command="{Binding ExpandToBookCommand}" /> <telerik:RadMenuItem Header="Collapse" Command="{Binding CollapseItemCommand}" /> <telerik:RadMenuItem Header="Collapse all" Command="{Binding CollapseAllCommand}" /> <telerik:RadMenuItem Header="Jump to home" Command="{Binding JumpToHomeCommand}" Visibility="{Binding JumpToHomeCommand.IsSupported, Converter={StaticResource BooleanToVisibilityConverter}}"/> </telerik:RadContextMenu> </telerik:RadContextMenu></UserControl.Resources>var outConnector = new InOutConnector() { Offset = new Point(0.5, 1), Direction = InOutConnector.eDirection.drOut, Name="StartConncetor"}; NewShape.Connectors.Add(outConnector);NewShape.UseDefaultConnectors = false;

<chartView:BarSeries.TrackBallInfoTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding DataPoint.Value}" FontWeight="Bold" /> <TextBlock Text=":" FontWeight="Bold" /> <TextBlock Text="{Binding DataPoint.DataItem.Name}" FontWeight="Bold" /> </StackPanel> </DataTemplate> </chartView:BarSeries.TrackBallInfoTemplate>public class CategoryData{ public string Name { get; set; } public double Value { get; set; } public string Category { get; set; }}