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
Hi,
I want to change the Time Button Style of RadDateTimePicker, like mouseover or pressed style.
But i cannot find it in tempalte.
Hello.
Inside the gridview is a hierarchical gridview.
I created a button of the column cell template in the hierarchical grid view.
How to bind this button and how to receive parameters?
Upload a simple example image and source.
<telerik:RadGridView x:Name="xMain" ItemsSource="{Binding Main}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/>
<telerik:GridViewColumn Header="View" Width="80" HeaderTextAlignment="Center" TextAlignment="Center">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Content="MainButton"
Command="{Binding DataContext.OnClickCommand, RelativeSource={RelativeSource FindAncestor,AncestorType=telerik:RadGridView}}"
CommandParameter="{Binding}">
</telerik:RadButton>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
<telerik:RadGridView.ChildTableDefinitions>
<telerik:GridViewTableDefinition>
<telerik:GridViewTableDefinition.Relation>
<telerik:PropertyRelation ParentPropertyName="Subs" />
</telerik:GridViewTableDefinition.Relation>
</telerik:GridViewTableDefinition>
</telerik:RadGridView.ChildTableDefinitions>
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="xSubs" ItemsSource="{Binding Subs}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/>
<telerik:GridViewColumn Header="View" Width="80" HeaderTextAlignment="Center" TextAlignment="Center">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Content="SubButton"
Command="{Binding DataContext.OnClickCommand, RelativeSource={RelativeSource FindAncestor,AncestorType=telerik:RadGridView}}"
CommandParameter="{Binding}">
</telerik:RadButton>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>It is bound to the same OnClickCommand and will receive an object to identify it.
(CommandParameter is the selecteditem that is bound to the GridView.)
MainButton working / SubButton not working
I also tried setting Mode=TemplatedParent of RelativeSource and other settings, but couldn't find a solution.
I am using radgridview on my project to display collection of data and I got an exception when I resize column. please find attachment for your reference. Application is also crashed so please help me out from this.
First jpeg : I got an exception whenever I tried to resize column
Second jpeg : I got an exception whenever I do mouse double click on radgridview row
Thanks & Regards
Murugansilvers M
Hi,
I am using radribboncombobox to display toolbar.we want to display combobox like shown in image.
last item as default item i.e "manage filters" in combobox and also other items are grouped as per category "shared" or "personal".
is it possible?
How to do it using template.?