Binding DataPointMember to a DependencyProperty
The purpose of this tutorial is to show you how to databind the chart's DataPointMember to a DependencyProperty.
To learn what DataPointMember is please read the Manual Series Mapping section.
This help topic will show you how to change the bar height (assuming that RadChart is created with its DefaultSeriesDefinition which is BarSeriesDefinition) as soon as you change the value in Text box.
The main idea behind this binding is to create an object that implements INotifyPropertyChanged and setting it to both RadChart and Text Box:
<telerik:RadChart x:Name="RadChart1" Margin="0,0,0,48" ItemsSource="{Binding}">
<telerik:RadChart.SeriesMappings>
<telerik:SeriesMapping>
<telerik:SeriesMapping.SeriesDefinition>
<telerik:BarSeriesDefinition />
</telerik:SeriesMapping.SeriesDefinition>
<telerik:ItemMapping FieldName="yValue" DataPointMember="YValue" />
</telerik:SeriesMapping>
</telerik:RadChart.SeriesMappings>
</telerik:RadChart>
<TextBox Height="23" HorizontalAlignment="Left" Margin="342,0,0,12" Name="textBox1" VerticalAlignment="Bottom" Width="120" Text="{Binding Path=[0].yValue, Mode=TwoWay}" />
<TextBlock Height="23" HorizontalAlignment="Left" Margin="300,0,0,8" Name="textBlock1" Text="Value:" VerticalAlignment="Bottom" />
Here is how to create object that implements INotifyPropertyChanged in code-behind:
public class MyObject : INotifyPropertyChanged
{
private double _yValue = 0;
public event PropertyChangedEventHandler PropertyChanged;
public double yValue
{
get
{
return this._yValue;
}
set
{
if (this._yValue == value)
return;
this._yValue = value;
this.OnPropertyChanged("yValue");
}
}
protected virtual void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}Set the DataContext property to List of MyObject class after the InitializeComponent method:
this.DataContext = new List<MyObject>() { new MyObject() };Here is the final result:

ou should move the focus out of the Text box in Silverlight to be able to see the new value of the Bar.