I want to use Operators to check if value is greater or equal to other number or variable in ng-class, and then apply a style class accordingly. Basically i want to color the div based on their prob.
Is the usage of ng-class correct? It prints the value of
{{1-apStats.preMappedProbability.toFixed(3)}}
but the ng-class tag doesn't work. Any reasons?
<div ng-class="(1-apStats.preMappedProbability.toFixed(3) >=0.5) ? 'yellowClass':'redClass'"> {{1-apStats.preMappedProbability.toFixed(3)}} </div>
What am I doing wrong.? Thank you