taffy-coustom-ui
Version:
32 lines (29 loc) • 880 B
text/typescript
import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
xAxis: object = {
labels: ['John', 'Marry', 'Alba', 'Steven', 'Josh', 'Alica', 'Robert', 'Kim', 'Ann', 'Paul', 'Regina', 'Dorothy']
};
yAxis: object = {
labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']
};
data: number[][] = [
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
];
}