Hello,
The RadMaskedNumericInput.ValueChanged event is only fired after a user-triggered action, whereas RadNumericUpDown.ValueChanged not (changing value from code behind triggers this event aswell).
Does this difference is a desired behavior? Is there a possibility to make RadNumericUpDown act like RadMaskedNumericInput?
Please see code sample below.
public partial class MainView : Window
{
public MainView()
{
InitializeComponent();
RadNumericUpDownTest.ValueChanged += RadNumericUpDownTestOnValueChanged;
RadMaskedNumericInputTest.ValueChanged+=RadMaskedNumericInputTestOnValueChanged;
UpdateButton.Click+=UpdateButtonOnClick;
}
private void UpdateButtonOnClick(object sender, RoutedEventArgs routedEventArgs)
{
RadNumericUpDownTest.Value = 1;
RadMaskedNumericInputTest.Value = 1;
}
private void RadNumericUpDownTestOnValueChanged(object sender, RadRangeBaseValueChangedEventArgs radRangeBaseValueChangedEventArgs)
{
//This event is triggered after value is changed from code behind
}
private void RadMaskedNumericInputTestOnValueChanged(object sender, RadRoutedEventArgs radRoutedEventArgs)
{
//This event is not triggered after value is changed from code behind
}
}

I have a chart with multiple ScatterSplineAreaSeries and a ScatterPointSeries. When I add a ChartTooltipBehavior to the chart, I see tooltips for the scatter points but not the area.
Is tooltip not supported for ScatterSplineAreaSeries?

I want to add a style to the emptytext of the radcombobox that works across the entire application.
From what I can see I have to use http://docs.telerik.com/devtools/wpf/controls/radcombobox/howto/create-a-watermark but if I use
<DataTemplate x:Key="EmptyTemplate"> <TextBlock FontWeight="Bold" FontFamily="Comic Sans" FontStyle="Italic" Text="Please select an agency" /></DataTemplate>
<telerik:RadComboBox Grid.Column="3" Grid.Row="3" SelectedItem="{Binding Path=CreateVetPcrTestSignup.SelectedVetPcrTestKit}" DisplayMemberPath="Name" IsEditable="False" EmptySelectionBoxTemplate="{StaticResource EmptyTemplate}" EmptyText="{x:Static localization:SignupTexts.PcrKitDefaultValue}" ItemsSource="{Binding Path=PcrTestKits}" />
I want {x:Static localization:SignupTexts.PcrKitDefaultValue} to be used here, but I of course get "Please select an agency", I tried removing the name from the template, but then its just empty. Is there a way to parse the empty text into the template or use a styling somehow that only affects the emptytext?

Does the RadReichTextBox support inserting images from the remote server specified directory, opening a window, displaying thumbnails, and selecting multiple pictures?
such as, I have a static resources server ,I want to open a file window with the specified directory(http://192.168.1.103:8089/surveypics/), ,when open it ,shows the thumbnails of pictures, and choose one or more pictures to insert into the RadRichTextBox
how to solve this?



Hi,
Have an application to chart many time based series all of which have values of 0 and 1 only (On/OFF). Some series do not change over the period while other change a lot. Hence, using a single Y axis means they overlap and the chart is not readable. So ... the desire is to show a stacked (each offset) series on the one chart, the Y scale is kind of irrelevant as each are On/Off only.
So ... how do I make it clear when a series is at 0 (Off) or 1 (ON). It is hard to tell if a horizontal line is 0 or 1 when stacked. My first thought was to use shading. When at 0 a line would be seen and when at 1 a filled bar would be seen. But it looks no range series will work with a linear X axis.
BTW - I can do this spark lines but I'm unable to see how to do it for ChartView series.
Suggestions?


How can I hide the title bar of a floating Telerik pane in WPF? I tried setting the PaneHeaderVisibility property but that only had an effect when the pane was docked. Here's the XAML:
<telerik:RadSplitContainer x:Name="Splitter" InitialPosition="FloatingDockable" telerik:RadDocking.IsAutoGenerated="True">
<telerik:RadPaneGroup telerik:RadDocking.IsAutoGenerated="True" >
<controls:MyPane x:Name="MyPane" Header="Results" IsTabStop="False" CanUserClose="False" PaneHeaderVisibility="Hidden"> <Grid Name="MyGrid"> <controls:Legend Name="Legend"></controls:Legend> </Grid> </controls:MyPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer>

<telerik:RadGridView.Resources> <Style TargetType="{x:Type telerik:GridViewRow}"> <Style.Triggers> <DataTrigger Binding="{Binding Path=DocumentType.DocumentTypeID}" Value="1"> <Setter Property="Background" Value="#FFEBEB1B" /> </DataTrigger> <DataTrigger Binding="{Binding Path=DocumentType.DocumentTypeID}" Value="3"> <Setter Property="Background" Value="LightGreen" /> </DataTrigger> <DataTrigger Binding="{Binding Path=DocumentType.DocumentTypeID}" Value="9"> <Setter Property="Background" Value="Cyan" /> </DataTrigger> <DataTrigger Binding="{Binding Path=DocumentType.DocumentTypeID}" Value="10"> <Setter Property="Background" Value="LightBlue" /> </DataTrigger> <DataTrigger Binding="{Binding Path=DocumentType.DocumentTypeID}" Value="4"> <Setter Property="Background" Value="Gray" /> </DataTrigger> <DataTrigger Binding="{Binding Path=IsDocumentGeannuleerd}" Value="True"> <Setter Property="Background" Value="IndianRed" /> </DataTrigger> <!-- THE CODE BELOW IS NOT WORKING --> <Trigger Property="IsSelected" Value="True"> <Setter Property="Background" Value="Transparent"/> </Trigger> </Style.Triggers> </Style></telerik:RadGridView.Resources>