1<div class="flex flex-col h-full w-full relative"> 2 <button 3 class="expand-button absolute top-2 right-2 z-10 p-1 rounded hover:scale-110" 4 (click)="expand.emit(featureName)" 5 > 6 <mat-icon *ngIf="!isExpanded">fullscreen</mat-icon> <mat-icon *ngIf="isExpanded">fullscreen_exit</mat-icon> 7 </button> 8 <div class="font-bold" *ngIf="featureName"> 9 {{ featureName }} 10 </div> 11 <div #chartContainer [id]="graphId" class="w-full flex-grow"></div> 12</div>