Hello, sorry if the question may be trivial, but I'm new of WPF and Syncfusion controls.
I've to apply a format to a cell if the value of another cell of the same row satisfies the condition specified.
Example:
var columnFormatting = new GridDataConditionalFormat { [...] };
var columnStyleInfo = new GridDataStyleInfo { [...] };
var conditionFormatting = new GridDataCondition
{
ColumnName = myColumnName,
ConditionType = GridDataConditionType.NotEquals,
Value = [***** Value contained in the cell of the same row and column named "myColumnName2" *****],
PredicateType = PredicateType.Or
};
columnFormatting.Style = columnStyleInfo;
columnFormatting.Conditions.Add(conditionFormatting);
myDataGrid.ConditionalFormats.Add(columnFormatting);
How is it possible to do that?
Thank you for your support. Regards
Luca Cavicchioli