I have a Slider control bound (TwoWay) to the Zoom.Width property of a RadCartesianChart control. When I zoom in and out with the scrollwheel on my mouse, the Slider automatically changes (as it should). But when I try to use the slider to zoom thechart in and out, nothing happens. The slider won't move. Is there something I am missing?
<Slider Name="Slider" Grid.Column="0" Margin="2" Orientation="Vertical" Minimum="1" Maximum="100" Value="{Binding ElementName=Chart, Path=Zoom.Width, Mode=TwoWay}"/><telerik:RadCartesianChart Name="Chart" Grid.Column="1" Palette="{Binding ChartPalette}" HorizontalZoomRangeStart="{Binding HorizontalZoomRangeStart, Mode=TwoWay}" HorizontalZoomRangeEnd="{Binding HorizontalZoomRangeEnd, Mode=TwoWay}"> ...</telerik:RadCartesianChart>

Hello,
i am using RadDesktopAlert in my WPF Application on a dual monitor setup.
I define the alert desktop position by setting the AlertScreenPosition.TopRight parameter.
The alert shows fine however, if my application is on the left monitor because of its StartUpLocation, the alert still shows on my main monitor.
I can't find a property to tell the alert to show on the monitor which contains the mouse. I hope this is possible and you can help me.
Regards,
Florian Meißner
Hey,
I'm occuring something odd. I try to apply a style to a Button. It works fine with just the Button. But the IsMouseOver Trigger doesn't work.
I'm using following code:
<Style x:Key="hyperlinkStyle" TargetType="telerik:RadButton">
<Style.Setters>
<Setter Property="Background" Value="#25A0DA"></Setter>
<Setter Property="Foreground" Value="White"></Setter>
<Setter Property="FontFamily" Value="Segoe UI"></Setter>
<Setter Property="Margin" Value="5,5,5,5"></Setter>
<Setter Property="Padding" Value="5,5,5,5"></Setter>
<Setter Property="FontSize" Value="12"></Setter>
<Setter Property="BorderThickness" Value="1"></Setter>
</Style.Setters>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" Value="Black"></Setter>
<Setter Property="Foreground" Value="White"></Setter>
</Trigger>
</Style.Triggers>
</Style>
Hope someone can explain why it doesn't work

I try to install Telerik UI for WPF Demos but it fails.
I am on Windows 10 with Visual Studio 2015.
In attachment you have a screenshot with the detail.
I have the problem, that my currently highlighted row is not visible, if it is under a selectedrow. For example if i have a gridview with 10 rows, and 5 of them are selected. If i navigate up and down in the grid with the arrow keys, the heighlighted row is only visible in not selected rows. What can i do here? It's seems to be an "z-order" problem or some thing like this.
Thank you!
Hello,
I have some graphical problems / questions with RadRibbonWindows / RadRibbonView in my application :
I use implicit theming.
Best regards,
Geoffrey
Dear support,
I have three TreeListView-components next to each other. Every one of them shows a part of the same data (scrolling and expanding is synchronised between these three treelistview). So only the most left component has to show the indent-indicator (the black triangle). How can I hide the indicators of the other two TreeListViews?
Thanks in advance
Marcus
If you are using a HeaderTemplate and save the layout, when the layout is loaded next the headertemplate is blown away and replaced with a TextBlock. Title works just fine and is able to apply it's template.
I believe the code bug is in DockingLayoutFactory.cs in the RadPane LoadPane(XmlReader reader) method
public RadPane LoadPane(XmlReader reader)
{
string name = reader.Name;
Dictionary<string, string> attributes = ReadAttributes(reader);
RadPane elementByTypeName = null;
if (attributes.ContainsKey("SerializationTag"))
{
elementByTypeName = this.docking.NotifyElementLoading(attributes["SerializationTag"]) as RadPane;
}
if (elementByTypeName == null)
{
elementByTypeName = this.GetElementByTypeName(this.docking.GeneratedItemsFactory, name) as RadPane;
}
if (elementByTypeName == null)
{
throw new InvalidOperationException();
}
if (attributes.ContainsKey("SerializationTag"))
{
RadDocking.SetSerializationTag(elementByTypeName, attributes["SerializationTag"]);
}
ReadProperty(attributes, elementByTypeName, RadPane.IsPinnedProperty, "IsPinned", boolParser);
ReadProperty(attributes, elementByTypeName, RadPane.IsHiddenProperty, "IsHidden", boolParser);
ReadProperty(attributes, elementByTypeName, RadPane.TitleProperty, "Title", identityParser);
ReadProperty(attributes, elementByTypeName, HeaderedContentControl.HeaderProperty, "Header", identityParser);
The above line should most likely read: ReadProperty(attributes, elementByTypeName, RadPane.HeaderProperty, "Header", identityParser);
It looks that's why the control template is getting blown away.
Anyway to get this fixed?