UNPKG

angular-pivot-table

Version:

Angular Pivot Table is a simple pivot table built in Angular. If data needs to be grouped by fields then check out this <a href="https://github.com/debabratapatra/ngtreegrid" target="_blank">ngtreegrid</a> Package. If header needs to be fixed/freezed and

17 lines (16 loc) 471 B
import { OnInit } from '@angular/core'; import { Configs } from './models/Configs.model'; import { Store } from './store/store'; export declare class AngularPivotTableComponent implements OnInit { source: any[]; configs: Configs; default_configs: Configs; store: Store; processed_data: any[]; processed_headers: any[]; constructor(); ngOnInit(): void; ngOnChanges(): void; validateConfigs(): void; setDefaultConfigs(): void; }