Hi Telerik,
We are having some difficulty using a RadVerticalLinearGuage. Within a VerticalLinearScale, we are binding the Min and Max properties to ViewModel properties called UpperBound and LowerBound. Most of the time, when these values are updated in the viewmodel, the Marker we are using to position at a "current value" gets drawn in our UI correctly. Occasionally, however, these appear to not be updated, and the chart marker that points to the current value of the series ends up flying way outside the range. Is Telerik aware of any silent errors or race conditions associated with updating of the min and max range of our chart. I am wondering if there is a requirement to update the range before the property that is bound to the Value of the Marker. Your help is much appreciated.
Hello,
I'm using a RadChartView, with a spline series. I can get the index of the datapoint I'm interested in and I can set the point's IsSelected to True. I then expect that point will then scroll into view, if not already, but it doesn't. What am I missing? Is there another way to do it?
Thanks.
Alan
I want to set BackgroundColor of all cells in the GridView dependent not on the propery of the RowItem but on the property bound to whole GridView.
The Bound Property is Called but nothing is changed. What is the easiest way to do it?
<telerik:RadGridView.Style>
<Style TargetType="telerik:RadGridView">
<Style.Triggers>
<DataTrigger Binding="{Binding IsAuthenticated}" Value="True">
<Setter Property="Background" Value="{StaticResource W Grey}"/>
</DataTrigger>
<DataTrigger Binding="{Binding IsAuthenticated}" Value="False">
<Setter Property="Background" Value="{x:Null}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</telerik:RadGridView.Style>
Is it something bad here?
Hello,
The code in the attached image is used to display a table.
I want to add a new column in which each row has a button.
Upon click, the handler will "know" the line and act accordingly.
Is it possible ?
Thank you,
Z.V
Hello,
I am writing a desktop application using WPF and RadGridView. I need to be able to operate 100% of the application without a mouse (keyboard navigation to every aspect of the application).
Is it possible to access column headers via keyboard navigation? If so, how do you do it?
Thanks.
The DataTrigger for the GridView works, while the DataTrigger for the Button does not: No matter, what the bound Type property's value is, the button stays visible.<telerik:RadToolBar Grid.Row="0"> <telerik:RadButton> <telerik:RadButton.Style> <Style TargetType="telerik:RadButton"> <Style.Triggers> <DataTrigger Binding="{Binding Type}" Value="{x:Static data:ReceiverGroupType.Fix}"> <Setter Property="Visibility" Value="Collapsed"/> </DataTrigger> </Style.Triggers> </Style> </telerik:RadButton.Style> <telerik:RadButton.Content>
...
</telerik:RadButton.Content> </telerik:RadButton></telerik:RadToolBar>
<telerik:RadGridView Grid.Row="1" ...> <telerik:RadGridView.Columns> ... </telerik:RadGridView.Columns> <telerik:RadGridView.Style> <Style TargetType="telerik:RadGridView"> <Style.Triggers> <DataTrigger Binding="{Binding Type}" Value="{x:Static data:ReceiverGroupType.Fix}"> <Setter Property="Visibility" Value="Collapsed"/> </DataTrigger> </Style.Triggers> </Style> </telerik:RadGridView.Style> </telerik:RadGridView>
Hey,
I'm trying to change the RadSplitButton to have a background image similar to a ImageButton. Is this possible? If so, how?
Thanks