This is probably just me not knowing how to implement two ListBox ScrollViewer synchronization?The practice in wpf is seting VerticalOffset or HorizontalOffset in ScrollViewer.ScrollChanged event.But,telerik ScrollViewer 's VerticalOffset or HorizontalOffset Property setter is private.How do I implement this?
Any help would be appreciated.

Hello,
In my database I have stored procedure which returns me the clients list. I'm binding it to AutoCompleteBox like below:
var y = DC.ClientGetAll();
ClientList.ItemsSource = new ObservableCollection<ClientGetAllResult>(y);
In XAML:
<telerik:RadAutoCompleteBox x:Name="ClientList" ItemsSource="{Binding}"
TextSearchMode="Contains"
DisplayMemberPath="Name"
AutoCompleteMode="SuggestAppend"
SelectionMode="Single" Margin="107,72,16,0"
VerticalAlignment="Top"
SelectedItem="{Binding}"
/>
And everything is OK.
But now I want, to create edit form for my users and after open form, AutoCompleteBox should show selected item (by ID).
I was tried everything, but without result.
Can you help me?

Hi All,
I am attempting to code a RadCartesianChart Bar series with two linear axes - similar to a scatter plot where there would be an X and Y coordinate, but instead of scatter points, I'd use a bar series; is anyone familiar with doing this?
In a nutshell I want to have time as the x axis - so I can plot a couple of data points where they would fall at any time from 0 to max, instead of having a Categorical axis where increment on the axis represents on category/value . I want them to be plotted freely on this axis, and at times overlap. (see attached radchartview-series-barseries - mine)
The y-axis would be a linear (dependent? ) axis as well, allowing me to plot my data point against a scale of kilo Joules 0 to the max.
Right now I am using C# WPF and just painting the points on a canvas and I had to paint grid lines and calculate the squares/scaling lines - very tedious. And telerik has some great pan, zoom and data point summary info on item click capabilities.
Please help
Many thanks
Kevin


Hi,
I noticed that the Office 2016 theme is the only theme where the RadButton foreground and background colors get inverted on mouse hover.
Unfortunately, if I do this, the text stays black even on mouse hover:
<telerik:RadButton> <TextBlock Text="Test" /></telerik:RadButton>
The following 2 versions work:
<telerik:RadButton Content="Test" /><telerik:RadButton> <telerik:RadButton.ContentTemplate> <DataTemplate> <TextBlock Text="Test" /> </DataTemplate> </telerik:RadButton.ContentTemplate></telerik:RadButton>
But I cannot use the first because in reality the content I want to put in the button is more complex (TextBlock containing Run objects).
And the second would be a workaround which I would like to avoid as it is not the optimal way.
The reason it does not work is because the IsMouseOver trigger in the template does this:
<Setter TargetName="Content" Property="TextElement.Foreground" Value="{telerik1:Office2016Resource ResourceKey=MarkerInvertedBrush}"/>
By setting TextElement.Foreground on the ContentPresenter inside the control's template, only children that consider the ContentPresenter as their logical parent will inherit from its Foreground property.
The seemingly obvious fix would be to change the template trigger's setter to this:
<Setter Property="Foreground" Value="{telerik1:Office2016Resource ResourceKey=MarkerInvertedBrush}"/>
If you feel like this is an appropriate fix, please include it in future versions so that we do not have to customize your template just for that.
If not, and you have advice, you're welcome share it.
Best regards
Hi
How can i change style close button in RadPaneGroup header?
Hi,
I'm trying to change the names of the shapes I show inside the image editor tool but I can not get my head arround it how to do it.
I want to change the text of the shape rectangle and ellipse.
How to approach this problem?
Best regards.

I am currently implementing RadCartesianChart3D to display some data. Everything seemed to be working perfectly fine, and I was mostly able to follow the examples provided by Telerik. However, it seems I am unable to set the Behaviors property of the RadCartesianChart3D.
<telerik:RadCartesianChart3D.Behaviors> <telerikcv:Chart3DCameraBehavior /></telerik:RadCartesianChart3D.Behaviors>The above code block (set inside a RadCartesianChart3D) yields "The member Behaviors is not recognized or accessible".
References are set as follows:
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Chart"xmlns:telerikcv="clr-namespace:Telerik.Windows.Controls.ChartView;assembly=Telerik.Windows.Controls.Chart" 
In regard to your WPF grid, in some cases we set the background and/or the foreground color of certain cells, and would like to maintain these colors if and when the grid is exported to excel.
When the GridView_ElementExportingToDocument event is fired, a GridViewElementExportingToDocumentEventArgs object is passed. How can I use this object to determine the foreground and background color of the cell?