This question is locked. New answers and comments are not allowed.
Hi,
is it possible to bind the DataPointMember of a RadChart to a DependencyProperty of an object? In this particular case I want the bar height to change as soon as I change the value in the text box.
Here is some sample code:
Thanks for your help.
Christoph
is it possible to bind the DataPointMember of a RadChart to a DependencyProperty of an object? In this particular case I want the bar height to change as soon as I change the value in the text box.
Here is some sample code:
RadChart1.ItemsSource = new TextBox[] { text };<TextBox Name="text">2</TextBox>
<telerik:RadChart x:Name="RadChart1" > <telerik:RadChart.SeriesMappings> <telerik:SeriesMapping LegendLabel="Test"> <telerik:SeriesMapping.ItemMappings> <telerik:ItemMapping DataPointMember="YValue" FieldName="Text" /> </telerik:SeriesMapping.ItemMappings> </telerik:SeriesMapping> </telerik:RadChart.SeriesMappings> </telerik:RadChart>Thanks for your help.
Christoph