File indexing completed on 2026-03-28 07:48:52
0001 <mat-menu #viewOptions>
0002 <button mat-menu-item>
0003 <mat-checkbox
0004 [checked]="showAxisChecked"
0005 (click)="$event.stopPropagation()"
0006 (change)="setAxis($event)"
0007 >
0008 Show Axis
0009 </mat-checkbox>
0010 </button>
0011
0012 <button mat-menu-item>
0013 <mat-checkbox
0014 (click)="$event.stopPropagation()"
0015 (change)="showLabels($event)"
0016 >
0017 Show Labels
0018 </mat-checkbox>
0019 </button>
0020
0021 <button mat-menu-item>
0022 <mat-checkbox
0023 (click)="$event.stopPropagation()"
0024 (change)="setCartesianGrid($event)"
0025 >
0026 Show Cartesian Grid
0027 </mat-checkbox>
0028 </button>
0029
0030 <button mat-menu-item>
0031 <mat-checkbox
0032 (click)="$event.stopPropagation()"
0033 (change)="setEtaPhiGrid($event)"
0034 >
0035 Show Eta/Phi Lines
0036 </mat-checkbox>
0037 </button>
0038 </mat-menu>
0039
0040
0041 <button mat-icon-button class="panel-button"
0042 matTooltip="Configure view options"
0043 [matMenuTriggerFor]="viewOptions"
0044 >
0045 <mat-icon>visibility</mat-icon>
0046 </button>