WindowStyle = System.Windows.WindowStyle.None;Topmost = true;WindowState = System.Windows.WindowState.Maximized;WindowChrome.SetWindowChrome(this, null);Hi
I have seen your example grid animation at http://blogs.telerik.com/pavelpavlov/posts/10-05-20/displaying-live-streaming-data-with-radgridview-for-silverlight-and-wpf.aspx id it possible to achieve this from code to target user defined values. For example I have a grid that is updated on a timer event and would like to animate selected cells after this event occurs for different target columns where cells fall into a value range. A small example of targetting a grid cell would be appreciated.
Regards
Joe

Here my binding.
<telerik:RadClock x:Name="clock" Width="260" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="3" Grid.Row="0" Grid.RowSpan="6"
ItemsSource="{Binding Times}"/>
public ObservableCollection<TimeSpan> Times
{
get { return LoadDataObjects(); }
}
What is wrong?
Thanks
Annett
private GridViewDataColumn bindColumn(string bindText, string headerAndTag, string cellText1, string cellText2, string cellText3) { GridViewFooterCell cell = new GridViewFooterCell(); StackPanel sp = new StackPanel(); TextBox cell1 = new TextBox() { Text = cellText1 }; TextBox cell2 = new TextBox() { Text = cellText2 }; TextBox cell3 = new TextBox() { Text = cellText3 }; sp.Children.Add(cell1); sp.Children.Add(cell2); sp.Children.Add(cell3); GridViewDataColumn col = new GridViewDataColumn(); col.HeaderTextAlignment = TextAlignment.Right; col.DataFormatString = "{0:N0}"; col.TextAlignment = TextAlignment.Right; col.Header = headerAndTag; col.Tag = headerAndTag; col.DataMemberBinding = new Binding(bindText) { Mode = BindingMode.TwoWay }; col.Footer = sp; return col; }