...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
import { Component } from '@angular/core'; import dashboardData from './json/dashboard.json'; interface dashboard { ID: Number; car: String; driver: String; } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'prototype'; // @ts-ignore dashboards: dashboard[] = dashboardData; } |
Resultaat
Prototype angular + google charts
Omdat angular ook een google charts API integratie hebben we hier ook een prototype voor gemaakt
...