1.0.3 • Published 2 years ago

angular-pivot-table v1.0.3

Weekly downloads
8
License
MIT
Repository
github
Last release
2 years ago

Angular Pivot Table

Angular Pivot Table is a simple pivot table built in Angular. If data needs to be grouped by fields then check out this ngtreegrid Package. If header needs to be fixed/freezed and body needs to be scrollable then check out this Fix Header Grid Package.

Demo

Click here for demo. This readme is the documentation. Visit my Website to know other packages.

Donate :hearts:

Please consider a donation if it is useful to you.

Version

Choose the correct version for your application.

Angularangular-pivot-table
<= 81.0.0
>= 91.0.3

Installation

    npm i angular-pivot-table

Usage

Import

Import AngularPivotTableModule Module in your application module.

  import {AngularPivotTableModule} from 'angular-pivot-table';

Add it to your imports array.

    @NgModule({
      imports: [
        AngularPivotTableModule
      ]
    })

Data

Data should look like below.

  source= [
    {'author': 'Deba', 'book': 'Angular'},
    {'author': 'Deba', 'book': 'Physics'},
    {'author': 'Aditya', 'book': 'Angular'}
  ];

Configs

Below are configs that can be set

Table Configurations

FieldTypeDefaultDescription
rowsstringn/aMandatory field. It is name of the column that will be treated as rows
columnsstringn/aMandatory field. It is name of the column that will be treated as columns
data_loading_textstring'Loading...'Loading place holder. This will be displayed when data is empty.
row_class_functionFunctionn/aCallback function for row class. A custom class can be returned which will be added to the row.
cssObjectn/aCss class for icons. See Below
css
FieldTypeDefaultDescription
row_selection_classstringn/aCSS Class for selected row.
header_classstringn/aCSS Class for header.
table_classstringn/aCSS Class for Table.

Example

  configs: any = {
    'rows': 'author',
    'columns': 'book'
  };

HTML

Add below node to your html.

  <db-angular-pivot-table [source]="source" [configs]='configs'></db-angular-pivot-table>

Can I hire you guys?

Yes. Please contact us at debabratapatra12@gmail.com for any professional support. We will be happy to work with you!

License

This project is licensed under the MIT license.