I am new to Angular 8. I using Angular 8. Any help or hint would be greatly appreciated it!!
I trying to implement the following pseudo code:
if (condition1)
{
print1
}
else if (condition2)
{
print2
}
else
{
print3
}
Here is the code that I am able to implement only if else
<ng-container *ngIf="(5>1);then resultOutOfRange else resultNA;">
</ng-container>
<ng-template #resultOutOfRange>
<td class="help-block">Result out of Range </td>
</ng-template>
<ng-template #resultNA>
<td>Result N/A</td>
</ng-template>