tagの値に基づいてタイトルタグのテキストを変更しようとしていdirectionます:
<li ng-repeat="t in tags">
<div class="tag"
ng-class="{'green-up': t.direction == 'positive',
'red-down': t.direction == 'negative',
'' : t.direction == 'stagnant'}"
title="Percentage increase"
ng-if="">{{t.name}}</div>
</li>
方向はpositive、negativeまたはstagnantのいずれかで、対応するか、title="Percentage increase" title="Percentage decrease"またはtitle="Percentage"
この場合、どのAngular構文を使用するのが最適ですか?