Hi !
I have a problem with the Diagram and Load (Serialize/Deserialize).
If I create a diagram on my computer with a Culture (FR for example) but setting additionnal Parameters :
- Decimal Separator : "." and List Separator : ","
I can create a diagram, open it, save it, ... No problem.
Now, I keep the same Culture (FR) but I change the additionnal Parameters :
- Decimal Separator : "," and List Separator : ";"
If I try to Load the previous created Diagram I have an error from the Load Method:
"Index was outside the bounds of the array."
This happens when the method :public Sub Load(serializationValue As String) Member of Telerik.Windows.Controls.RadDiagram is called.
The Serialized XML loaded is exactly the same if I create the diagram with different additionnal parameters of the culture. So, I think it's a problem from the Load method... Maybe...
Could you please help me ??
I'm trying to create a custom orthogonal router that acts much like a schematic capture program. If you look at the youtube video in the link below, starting at 4m28s you will see what I am trying to achieve.
1. I need a custom router to make right angles when I add connections. I have listed the code below to show what I have so far, which basically adds two points to the middle of the connection, but it does not handle complex routing situations where it needs to route around other shapes.
2. Also, I would like the connection to start on a mouse click (press+release) and start routing as I move my mouse, then finally completing the connection with another mouse click (press+release). Any thoughts on how to achieve these two items?
public class OrthogonalRouter : IRouter { public System.Collections.Generic.IList<Point> GetRoutePoints(IConnection connection, bool showLastLine) { List<Point> pointList = new List<Point>(); Point start = connection.StartPoint; Point end = connection.EndPoint; pointList.Add(new Point(start.X + (end.X - start.X) / 2, start.Y)); pointList.Add(new Point(start.X + (end.X - start.X) / 2, end.Y)); return pointList; } }
Hello,
Is it possible to achieve this like on the attached file ?
Thanks in advance.
Regards.

Hello,
Tested with the Office 2013 theme.
I have a RadMap control with WrapAround set to True. If I set pin points using the information layer, they are displayed only on the center map: If I move the map to the left or right (full earth view), the pin points are not displayed on the "new" displayed part.
Regards

I have an application that is using the Office2013 Implicit theme.
I need to highlight specific cells in a RadGridView (by changing the background color) and have done so using a custom Style Selector.
The issue is that when the custom GridViewCell style is applied, it does not inherit the Office2013 theme.
// CellStyle
<Style x:Key="WarningCellStyle" TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}"> <Style.Setters> <Setter Property="Background" Value="LemonChiffon"/> <Setter Property="Foreground" Value="Black"/> </Style.Setters></Style>
Am I targetting the right resources? (TargetType, BasedOn)
Any ideas/suggestions on how to do this otherwise?
Happy to provide more code or screenshots if needed.
Can you see any reason why the headers on my RadTabControl show in design view but when I run the app they do not show? I attached a screenshot to show what it looks like.
<Grid Background="LightGray">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="10"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition Height="*"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="1" Grid.Column="1">
<telerik:RadTabControl Height="400" >
<telerik:RadTabControl.Items>
<telerik:RadTabItem Header="Generate Scripts" Foreground="white">
<telerik:RadTabItem.Content>
<Border Background="Bisque">
<TextBlock Text="The content of tab item 1" FontWeight="Bold" VerticalAlignment="Center" TextAlignment="Center" Foreground="Black"/>
</Border>
</telerik:RadTabItem.Content>
</telerik:RadTabItem>
<telerik:RadTabItem Header="Admin" Foreground="white"/>
<telerik:RadTabItem Header="Users" Foreground="white"/>
<telerik:RadTabItem Header="Program / Hulls" Foreground="white"/>
</telerik:RadTabControl.Items>
</telerik:RadTabControl>
</StackPanel>
</Grid>
Hello,
New to the forums so sorry if this is in the wrong spot.
I'm finding that the WPF control "FileBrowserEditTextBox" causes Visual Studio to crash. Reproduction steps are as follows:
Once the solution is done building, the instance of Visual Studio crashes. Starting debugging, instead of building the solution directly, bypasses the problem, but doing a rebuild solution after debugging has stopped causes the crash. Present in Visual Studio 15.6.0 and 15.6.2 with Telerik UI for WPF version 18.1.220.0.
Nick

I am enabling mulitpleselection of combobox and using Text field to bind a string value. After I use the multipleSelectionSeparator = "|", there is the null reference exception thrown. The binding field "BindText" has been initialized to empty string. There is no issue if I do not use multipleSelectionSeparator., so I am really confused why null reference is thrown and stack trace image is attached.
<telerik:RadComboBox x:Name="RadComboBox"
IsReadOnly="False"
IsEditable="False"
Text="{Binding BindText, Mode=OneWayToSource}"
AllowMultipleSelection="True"
ItemsSource="{Binding BindTexts}"
IsEnabled="{Binding IsEnabled}"
MultipleSelectionSeparator=";"
/>

Hi,
We are trying to create a chart that looks the one shown in the attachment. Of note is the need to have different widths and colors for each bar as well as no gaps between them. Also, the ability to overlay the chart with the dotted lines is essential. We have found a few old forum threads saying that variable bar widths is not supported. Is this still the case?

So I dug up and old project that I need to modify however I cannot get it to compile as I appear to be missing references. Both RadRadialMenu and RadRibbonWindow (plus child items such as RadRadialMenuItem) are missing from assemblies. I have the latest WPF components installed. How do I fix this?
