This question is locked. New answers and comments are not allowed.
Hello telerik team,
Is there an easy way to dynamically assign the font color of a column dynamically, based on the input data to it?
Any sample example would be helpful and appreciated.
Regards
Siva
P.s: I went through some of your blogs and noticed that you are suggesting to use the code as below:
var unitPriceCells = RadGridView1.ChildrenOfType<GridViewCell>().Where(c => c.Column.UniqueName == "UnitPrice").ToList();
unitPriceCells.ForEach(c => c.Background = Brushes.Orange);
unitPriceCells.ForEach(c => c.Background = Brushes.Orange);
But, iam not finding ChildrenOfType property for Gridview.
