create cylinder

This commit is contained in:
Bastian Wagner
2025-01-02 16:53:16 +01:00
parent 5c6516095b
commit a47bbe29fe
11 changed files with 175 additions and 9 deletions

View File

@@ -56,7 +56,7 @@
<mat-card>
<mat-card-content>
<ag-grid-angular
style="width: 100%; height: 300px;"
style="width: 100%; height: 100%;"
[gridOptions]="gridOptions"
(gridReady)="onGridReady($event)"
>

View File

@@ -7,6 +7,7 @@ import { MatIconModule } from '@angular/material/icon';
import {MatCardModule} from '@angular/material/card';
import { RouterModule } from '@angular/router';
import { AgLoadingComponent } from '../../shared/ag-grid/components/ag-loading/ag-loading.component';
import { AG_GRID_LOCALE_DE } from '@ag-grid-community/locale';
@Component({
selector: 'app-dashboard',
@@ -31,6 +32,7 @@ export class DashboardComponent {
pagination: true,
paginationPageSize: 10,
loading: true,
localeText: AG_GRID_LOCALE_DE,
loadingOverlayComponent: AgLoadingComponent
};