Skip to content

Instantly share code, notes, and snippets.

@chadmichel
Created March 12, 2024 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadmichel/b1342d11198b9498a23444f755ac113a to your computer and use it in GitHub Desktop.
Save chadmichel/b1342d11198b9498a23444f755ac113a to your computer and use it in GitHub Desktop.
<h1>Dashboard</h1>
<mat-grid-list cols="2" rowHeight="500px">
<mat-grid-tile>
<mat-grid-tile-header>Total Users</mat-grid-tile-header>
<mat-card>
<mat-card-content>
<canvas #totalUsers id="totalUsers" width="300" height="300"></canvas>
</mat-card-content>
</mat-card>
</mat-grid-tile>
<mat-grid-tile>
<mat-grid-tile-header>Users Logins</mat-grid-tile-header>
<mat-card>
<mat-card-content>
<canvas #userLogins id="userLogins" width="300" height="300"></canvas>
</mat-card-content>
</mat-card>
</mat-grid-tile>
<mat-grid-tile>
<mat-grid-tile-header>Users Types</mat-grid-tile-header>
<mat-card>
<mat-card-content>
<canvas #userTypes id="userTypes" width="300" height="300"></canvas>
</mat-card-content>
</mat-card>
</mat-grid-tile>
<mat-grid-tile>
<mat-grid-tile-header>API Calls</mat-grid-tile-header>
<mat-card>
<mat-card-content>
<canvas #userTypes id="apiCalls" width="300" height="300"></canvas>
</mat-card-content>
</mat-card>
</mat-grid-tile>
</mat-grid-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment