I am into an awkward problem where I need to change the color of the text depending on the situation
here is what I am doing.
ng-style="{'color':
order.order_status_id === '2' ? 'red' :
order.order_status_id === '3' ? 'green' :
order.order_status_id === '5' ? 'blue' :
''}"
The way I am using is kind of a workaround. Is there an actual angular solution for the scenario?