I'm laying out a 3d surface from a heightmap. I've got all the data in there, and the surface is showing beautifully. Unfortunately, the Y-axis is now how I want it. Your 3d Chart does not lay out coordinates as a 2d image might. When I look at the surface from directly above it, I want it to basically look just like the 2d image that this heightmap was built from.
That is, with X-min on left, X-max on right, Z min far away and Z max closest to the eye, then I want Y to increase from top to bottom. Just as it would in any 2d image. But your 3D chart reverses this.
I need to invert it but I cannot figure out how. I tried merely inverting the Y data but that had no effect. I could not find any sort of "IsInverse" property for the 3d chart axes.
What is the best way to achieve what I want?
Is there any easy way -- like, perhaps, some equivalent ofthe old 2d chart's IsInverse property in the 3d world?
If not, is there some other way to achieve this? I did find a similar question for the newer 2d chart: ( https://www.telerik.com/forums/how-to-reverse-the-y-axis-values ). I've downloaded it and am looking at it but it relies on events that I cannot find in the 3d world: Like a "RangeChanged" event. I'm not sure if I can adapt this to suit my needs.
I want to check the nth item of the ComboBox with CheckBox dynamically. How can this be achieved?
I tried the following and an exception is thrown
radCombo.Items(n).IsSelected = True
The XAML is as followed:
<DataTemplate x:Key="CheckBoxItemTemplate">
<CheckBox Content="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadComboBoxItem}, Path=Content}"
IsChecked="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadComboBoxItem}, Path=IsSelected}"
telerik:TouchManager.ShouldSuspendMousePromotion="True" Click="CheckBox_Click"/>
</DataTemplate>
<telerik:RadComboBox Name="radCombo" Height="30" Canvas.Left="650" Canvas.Top="55" Width=" 200" Background="White" AllowMultipleSelection="True" EmptyText="Select "
MultipleSelectionSeparator="," IsReadOnly="True" ItemTemplate="{StaticResource CheckBoxItemTemplate}" >
</telerik:RadComboBox>

Hi,
I've discovered that french translation is missing in new file dialogs controls (resources are present but still translated in english). Is this scheduled for next release?
Thank you
Like winform has raddock.DockWindowAdded event, I want the same event for Raddocking in wpf too whenever a new radPane is added in my raddocking control.

Hi Guys, I have a problem I want to show null values in my list as gap in the RadChartView. I saw this is implemented in RadChart but I dont fint this for the RadChartView. So now my Question is how can I achieve that zero values to be displayed as gap in the graph? Thanks for your help.
Greets Max
<telerik:RadTreeView.ItemContainerStyle> <Style TargetType="{x:Type telerik:RadTreeViewItem}" BasedOn="{StaticResource RadTreeViewItemStyle}"> <Setter Property="VerticalContentAlignment" Value="Stretch"/> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> <Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> <Setter Property="IsEditable" Value="{Binding IsEditable, NotifyOnSourceUpdated=True}" /> <Setter Property="IsSelected" Value="{Binding DataContext.IsSelected, Mode=TwoWay, RelativeSource={RelativeSource Self}}" /> </Style> </telerik:RadTreeView.ItemContainerStyle>Hello Telerik Team
We use the MVVM pattern. In order to be able to handle appointments in the ViewModel, we need to know which appointment is currently selected. If the Appointment has a RecurrenceRule, the binding to the SelectedAppointment Propery doesn't work.
Here is a test project on my OneDrive account: https://1drv.ms/u/s!ApC9hrIinTjDcltMasjw7vSKeAc
Regards,
Marco