I'm currently working on a project using Angular4 and ngx-datatable, so my .html file looks like this:
<ngx-datatable>
<ngx-datatable-column>
<ng-template> ...
{{row.value}}
My goal is to check the value of each row - if it's greater than 100, I want to change the background color to red. Otherwise, it should remain white.
How can I achieve this? Any help would be greatly appreciated. Thanks!