We upgraded our project to the newest version of telerik UI for WPF. But now no controls are showed in the designer. We use implicit styles. So it shouldn't be a problem with the NoXaml dll's.
I tried to add every source from the theme like that:
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Cloud.Controls.xaml" />
But it do not show anything in the designer. It is always empty.
I also tried to clean the project, then delete the bin and obj folder and rebuild it. Doesn't help.
I tried everything in this post: No Telerik controls in Design view in UI for WPF | Telerik Forums
But same result, nothing helps.
Someone have an idea?
Hi,
I don't know how to change the style of RadDiagramNavigationPane. I saw the style from your demo and it looks pretty good,
How to do that?
Here is mine and it looks a little ugly....
Apply Fluent Theme,
Thanks!
Regards,
Aeroth
I'll attach an actual image from the ChartView for better understanding (TelerikChart5)
We have an Y-axes with SmartLabelsMode="SmartStepAndRange" and stacking active. As you can see in the image the highest column does not surpass the 30 Million mark and still the Smart Range is put at 40 Million.
The lowest column does not surpass negative 5 Million and the smart range is still put at negative 10 Million.
Why is this and how can we get smart the smart range to work closer to our actual max/min values or should we calculate our min/max ourself and set them with a binding?
I'll also attach a second image with manually set Y-axes values to minimum -5 Million and maximum 30 Million to see that this would actually fit much better (TelerikChart6).

We have 2 axes in one chart (left axis for bar series, right axis for line series)
The bar values range from negative to positive, the line values are only positive.
How can we align those 2 Y-axes to share the same line for value 0?
I'll attach 2 pictures, one from the actual ChartView and one from a Excel Chart with aligned 0-Value axes.

I have a RadDateTimePicker control in my project and I can only select year, day, month and hour.
How can I select minutes from this control?
<telerik:RadDateTimePicker DisplayFormat="Short" IsManipulationEnabled="False" InputMode="DateTimePicker" x:Name="dateslct" Grid.Row="2" Grid.Column="2" HorizontalAlignment="Right" telerik:StyleManager.Theme="Summer" Margin="0,0,10,0" >
</telerik:RadDateTimePicker>
Hi there,
i found an old post where some one asked to rotate the series labels via XAML and C# code behind.
Is this possible and can you show me an example how to do this in an RadCartesianChart.
I have to do it via code behind...
TIA, Andi

Hello.
I want to make it similar to an image.
I made the design, but binding is the problem.
There is a model, there is a displayname, and there are values.
The dropdown shows the sub item name when selected, and the value uses the value when the button is selected later.
(I know listbox doesn't support this. So I try to use dropdown.)
A parent item may have a value and a child may not. This shouldn't be an option.
The IsSelected function does not exist.
How do I put the binding and do it?
<telerik:RadDropDownButton Content="{Binding }">
<telerik:RadDropDownButton.DropDownContent>
<telerik:RadContextMenu x:Name="ContextMenu" ItemsSource="{Binding }">
<telerik:RadMenuItem Header="parent name binding 1">
<telerik:RadMenuItem Header="child name binding 1.1"/>
<telerik:RadMenuItem Header="child name binding 1.2"/>
<telerik:RadMenuItem Header="child name binding 1.3"/>
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="parent name binding 2">
<telerik:RadMenuItem Header="child name binding 2.1"/>
<telerik:RadMenuItem Header="child name binding 2.2"/>
</telerik:RadMenuItem>
<telerik:RadMenuItem Header="parent name binding 3">
<telerik:RadMenuItem Header="child null"/>
</telerik:RadMenuItem>
</telerik:RadContextMenu>
</telerik:RadDropDownButton.DropDownContent>
</telerik:RadDropDownButton>
Thanks.
I was following the example here:
The underlying values do change but the grid visual values don't reflect the changes?
I want to avoid using a .Refresh as that can trigger all kinds of other issues.
What am I missing?
Cheers, Rob.
I'm populating a RadTileList using AutoGeneratingFile and setting Tile.Background to a ImageBrush, works well. In the RadTileList.Loaded event (which seems to be happen only after all AutoGeneratingTile events have completed) I set the RadTileList.SelectedItem.
This works great when I step thru the code in debug mode. However, if I don't step thru the code the SelectedItem will NOT be checked in the RadTileList?
Don't know how to proceed with this?
Any help?
Cheers, Rob.