Highlighting specific cells

Hello,

If we have to change the colour of the row. We use this.grid1.dataTable.rowStyleClass and the entire row colour changes. Is there a way where we can colour only specific cells in a column as highlighted in yellow below

Regards

Hello,

I am still stuck with this issue. Could you please help me out.

Thanks

You can use the form search - it is quite powerful:

<span *ngIf="data.UnitPrice >= 20" style="color: red;">
${data.UnitPrice | currency}

<span *ngIf="data.UnitPrice < 20">
${data.UnitPrice | currency}

Should this piece of code go in the template section of the column or the edit template section ?