Hi,
I have a graph that the Nodes of graph have time.
I was Wondering there is a way to display a timeline according to the nodes.
something like the below picture :
tanks
I have a RadMaskedTextInput Box that I have validated in the backend as follows.
//Phone Number[RegularExpression(@"^\d{10}$")]public string PhoneNumber{ get { return _phoneNumber; } set { double.TryParse(value, out temp); if (_phoneNumber != value) { Validator.ValidateProperty(value, new ValidationContext(this, null, null) { MemberName = "PhoneNumber" }); _phoneNumber = value; OnPropertyChanged("PhoneNumber"); } }}The xaml for the object is as follows:
<!-- Phone Number --><telerik:RadMaskedTextInput Margin="2" BorderBrush="LightGray" IsClearButtonVisible="False" Mask="(###) ###-####" UpdateValueEvent="PropertyChanged" TextMode="PlainText" Value="{Binding Path=PhoneNumber, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnExceptions=True, UpdateSourceTrigger=PropertyChanged}">This does not have the expected behavior.
What I want is that when the user does not have a valid 10 digit phone number then set the validation flag that the number is incorrect.
While it may be left blank, as soon as they start typing I want it to show a red box until only 10 digits are present.

EXample:
void tv_Edited(object sender, RadTreeViewItemEditedEventArgs e)
{
if(tv.SelectedItem.ToString()=="Session")
{
MessageBox.Show("Plese select different name!","Warning!!!!!");
//if tv.SelectedItem is "Session", I want to assign Oldvalue for that treeviewItem and I am able to get oldvalue(string oldvalue = e.OldValue.ToString();) I want to assign that oldvalue.
Team please help me ASAP.
regards,
Ranjith

Hi,
Is it possible for each category on a CategoricalAxis to have a different width?

Hi to all,
I need to "format" a GridViewDataColumn to keep blank if it contians 0 decimal.
This is the classical GridView that shows ledger entries that shows Debit and Credit Amount Columns, but when the cell contains 0 (zero), it would be blank and 0 (zero).
What can I do it?
Is there a way to show the BreadCrumb's parent dropdown menu on selection of the child?
For example, let's the example program from the WPF Examples / BreadCrumb Theming, it shows a demo of windows explorer.
Local Disk c:\ -> Personal Folders -> Outbox as a sample breadcrumb path.
By default, if I click on the drop down for 'Personal Folders' I'll get a listing of the child elements, i.e. 'Outbox', 'Drafts', etc.
Outbox doesn't have a drop down associated with it since it is the last element.
Is it possible to setup the control so there would be a drop down on 'Outbox' and clicking it would show all of the items at that level?
Thanks!
-ben

Hi,
I have a XBAP application that used the RadWindow as modal dialog window and it will make the UI behind the RadWindow inactive until I closed it. However, after I updated to the latest version of WPF (v.2015.1401.45), the 'inactive' ability no longer there.
On this latest version, the code that calls the RadWindow.ShowDialog(), the UI behind the Radwindow still active.
What do I need to do to make the UI behind the Radwindow inactive?
Thanks,
Chris
Hey guys,
Trying to add multiple lines to a Cartesian.LineSeries. I have 2 lists, that I need displayed. 1 is for a current customers data, the 2nd is for comparison to another customers data. All the data is in both lists. I can get the first list to show easily. But when trying to add a 2nd line to it it's not so easy.
Here is what I have so far.
<Grid>
<telerik:RadCartesianChart x:Name="MetricLineGraph" HorizontalAlignment="Left" VerticalAlignment="Top" Height="Auto" Width="Auto" MinHeight="300" MinWidth="300" Margin="10,10,10,10" >
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:DateTimeContinuousAxis LabelFitMode="MultiLine"
LabelFormat="hh:mm:ss"/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis />
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:LineSeries ItemsSource="{Binding GraphItems}"
ValueBinding="MetricValue"
CategoryBinding="MetricTimeStamp"
Foreground="WhiteSmoke"
TextBlock.Foreground="White">
</telerik:LineSeries>
<telerik:LineSeries ItemsSource="{Binding LineGraphGroupCompareItems}"
ValueBinding="MetricValue"
Foreground="WhiteSmoke"
TextBlock.Foreground="White">
</telerik:LineSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
</Grid>