Hi,
I would be happy if you could help me how to download RadBarcodeQR as an image?
Thanks.

Hello, I'm using the filtering dropdown window (appearing when clicking the funnel icon) and I want to change the behaviour behind the controls.
For example : I'd like the filter to apply only when clicking the "Filter" button and not directly when checking the checkboxes, the problem is that I have no idea where to change that.
The header of the SW is visible but there nothing in the content area, bank white not even the no appointments text.
Attaching sample project and image
App.xaml:
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Input.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.ScheduleView.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
UC:
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" >Is there anything I am doing wrong?
Thank you.
Hi, I'm trying to set focus on a textbox in a grid with a 'New' button click. the button has style setter to enable the text box on click, but i cannot get the textbox to get focus. best i can get is the cursor frozen in the textbox, requiring user to hit tab or enter. All my searching is saying there's a bug that will be fixed - years ago. I'm running the current version 2021.R3
trying the focusmanager does nothing. Here is the code:
<UserControl x:Class="Arc2.App.Views.JobNoteVw"Hello.
I created a bar chart similar to the link below.
The chart is successful, but there is a problem with sorting in categories.
<telerik:RadCartesianChart>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:LinearAxis/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:CategoricalAxis/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:BarSeries ItemsSource="{Binding ResultChart}"
CategoryBinding="Title"
ValueBinding="Value"
ShowLabels="True">
<telerik:BarSeries.DefaultVisualStyle>
<Style TargetType="Border">
<Setter Property="Background" Value="{Binding DataItem.Color}" />
</Style>
</telerik:BarSeries.DefaultVisualStyle>
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
<telerik:GridView ItemSource="{Binding ResultChart}" />
As you can see, Category 0 is the first value, and you can see that it is below.
I want to reverse this.
Is there another way other than to sort the Itemsource binding values ​​in reverse?
I want to avoid sorting because the results are also displayed in the GridView.
Thanks.

Hello
I am showing a RadChartView which has a bar series.
I have varying data and sometimes logarithmic is better and sometimes linear axis is better.
How can I provide a button to dynamically switch between Linear Axis and Logartihmic Axis on the vertical axis?
I prefer using XAML and data binding in XAML. is this possible?

Hi,
I observed that when the tooltip disappears, I need to move out of control before I can see the tooltip again (also in your sample with England map you can see this effect). It is reasonable, but I have a control that display a histogram plot. I could move the mouse over different bar and I would like that the tooltip could show again.
Is there a way to reactivate tooltip without exit from control?
Thank you
Luigi
I have a RadGridView inside that 2 different column i have a cell template and a datatemplate in that i have the RichTextbox inside that paragraph inside that run and the text property binded on it.
Now i need to compare tow richtexbox text value. If any RichTextbox value is different it need to be highlighted inside thta text Box.
XAML
<RadGridView Grid.Row="1" x:Name="gfgvBrokenLinks" AutoGenerateColumns="False" ItemsSource="{Binding BrokenLinks}" IsReadOnly="True" AutoExpandGroups="False" RowLoaded="gfgvBrokenLinks_RowLoaded">
<telerik:GridViewDataColumn DataMemberBinding="{Binding Data1}" Header="Data1" IsGroupable="False">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<RichTextBox x:Name="richTextBox2" MinWidth="100" IsReadOnly="True">
<FlowDocument >
<Paragraph>
<Run Text="{Binding Data1,Mode=OneWay}"></Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Data2}" Header="{my:LocString ResourceKey=HeaderData2}" IsGroupable="False" >
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<RichTextBox x:Name="richTextBox3" MinWidth="100" IsReadOnly="True" >
<FlowDocument >
<Paragraph>
<Run Text="{Binding Data2,Mode=OneWay}"></Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
c#
Thanks In Advance