Similar to how Excel works, I'm looking for a way to have header text span multiple columns ... see image. Also needs to work with a "Freeze/scrolling" RadGrid.
Cheers, Rob.
Hello, telerik.
When using NoXaml, RadDocumentPane looks loosing the header as attached picture.
It shows without problem when changing projects into dlls with Xaml as attached image.
Following theme xamls are added on project start.
Controls.Add("System.Windows.xaml");
Controls.Add("Telerik.Windows.Controls.xaml");
Controls.Add("Telerik.Windows.Controls.Navigation.xaml");
Controls.Add("Telerik.Windows.Controls.Input.xaml");
Controls.Add("Telerik.Windows.Controls.GridView.xaml");
Controls.Add("Telerik.Windows.Controls.RibbonView.xaml");
Controls.Add("Telerik.Windows.Controls.Docking.xaml");
Did I miss something another xaml ?
My project information is as follwos;
- telerik 2021.2.615, vs 2019.
- .Net 5 (WPF50 dlls used in installed folder).
Thanks.
Kang
Hello,
when the user double clicks an item in the ExplorerControl a rename is initiated (see attached screenshot). This is usually expected to happen on a slow double click. On a normal double click users expect the file to be opened. The right click context menu also indicates this behavior as the open action is shown bold (and rename is not). So this is a little bit inconsistent and looks like a bug.
For the WinForms Version I found a workaround here: https://www.telerik.com/forums/few-question-on-explorercontrol#5122863
But the WPF Explorer Control is missing a ItemMouseDoubleClick event, so what is the best way to get the expected behavior?
Best regards, Philipp
Hi,
In Silverlight I believe the RadTabControl will lazily load the content of a RadTabControl when the RadTabItems are declared in the Xaml. In WPF I seems to eager load all the items on loading the control. Is it possible to configure the RadTabControl to only instantiate the RadTabItem content when the tab is selected to improve performance?
Thanks
I have List(of objects) and the definition of the Object is Name (string) FileName (string) that I set to the ItemSource of a RadTileList. Here is the control definition in XML:
<telerik:RadTileList x:Name="tlColorPresets" Grid.Row="1" Grid.Column="1" Width="600">
<telerik:RadTileList.ItemTemplate>
<DataTemplate>
<Grid Background="#FF006AC1">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Text="{Binding Name}"/>
<Image Grid.Row="1" Grid.Column="0" Source="{Binding ImageFileName}" />
</Grid>
</DataTemplate>
</telerik:RadTileList.ItemTemplate>
</telerik:RadTileList>
Trying to figure out how to get my images displayed in the RadTileList? Any hints/suggestions.
Cheers, Rob.
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.