I try to show an image in a cell of my Material table. Therefore I tried this code in my HTML File:
<ng-container matColumnDef="ImageUrl">
  <mat-header-cell *matHeaderCellDef> imageUrl </mat-header-cell>
  <mat-cell *matCellDef="let element"> {{element.imageUrl}} </mat-cell>
  <img [src]="imageUrl" />
</ng-container>
Unfortunately, nothing appears in my Table.
 
     
     
     
    