Below code is not working I want to check for below conditions
event.format === 'Online'
then stylered
colorevent.format === 'InPerson'
then stylegreen
colorif neither
InPerson
norOnline
then style#aaa
color
I tried
[ngStyle]="{'color': event?.format=== 'InPerson' ? 'green' : (event.format==='Online ? 'red':'#aaa')}"