I would like to draw an area fill between my curve and vertical axis. I am using RadCartesianChart and ScatterSeriesDescriptor, how can I do that ?
If I add a ScatterAreaSeries, the chart will draw area between curve and horizontal axis.
I know I can do that if I change vertical axis to Catigory, but unfortunately I have to use Linear for both axis.
Hi,
Can someone show me how to do this in an MVVM friendly way?
I have want to set the ok button enabled state based on App.AppState.GetValue<bool>("IsReadOnlyUser");
Normally, I would do this with the CanExecute portion of a delegate. I can't quick seem to figure out how to rig this up.
I tried
<telerik:EventToCommandBehavior.EventBindings> <telerik:EventBinding Command="{Binding DataContext.BeginningEditCommand, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource AncestorType=telerik:RadGridView}}"EventName="BeginningEdit" PassEventArgsToCommand="True" CommandParameter="{Binding RelativeSource={RelativeSource AncestorType=telerik:GridViewRow} }"/></telerik:EventToCommandBehavior.EventBindings>But couldn't find anything to set that would affect the ok button's IsEnabled.
Any help would be great.
Thanks... Ed
Hi,
The requirement is to monitor the Ctrl+S event, then Overwrite the dialog of selection file and give the default path and filename.
How to solve this?
Thanks!


Hello,
I have a problem using radmenu in RadWindow.HeaderTemplate.
The radmenu items are displayed but the sub items aren't and nothing happens when i click on item.
Here is my code :
<telerik:RadWindow x:Class="MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Header="Test" Height="900" Width="1400" WindowStartupLocation="CenterScreen" FontFamily="Segoe UI Bold" FontSize="18"> <telerik:RadWindow.HeaderTemplate> <DataTemplate > <telerik:RadMenu Background="Transparent" HorizontalAlignment="Right" ClickToOpen="false" > <telerik:RadMenuItem Header="Item1" /> <telerik:RadMenuItem Header="Item2" > <telerik:RadMenuGroupItem> <telerik:RadMenuItem Header="SubItem1"/> </telerik:RadMenuGroupItem> </telerik:RadMenuItem> </telerik:RadMenu> </DataTemplate> </telerik:RadWindow.HeaderTemplate> <Grid> </Grid></telerik:RadWindow>
Thanks in advance.
Regards.
I have Prism application and the shell window is a RadRibbonWindow with a RadRibbonView. The close button is shifted left. I cannot figure out why. If I replace the RadRibbonWindow with a Window, then the close button renders in the correct location. Attached is an image of the RadRibbonWindow with close box shifted left. Thanks.