The Pivot Grid component for Angular is a lightweight and powerful data visualization widget.
It allows visualization of multi-dimensional and hierarchical data structures.
It also ships with a Pivot Table Designer widget. The Pivot Table Designer allows you to visually configure the pivot columns, rows, aggregated values and multiple different settings.
You can also configure pivot rows and columns text alignment settings and various text formatting options on the pivot cells.
Before you start with the Pivot Grid widget, you should be familiar with pivot tables and understand when to use regular data grids to display table data,
and when to switch to the pivot grid and pivot tables. The following article is a good entry-level introduction to pivot tables: Wikipedia: Pivot table
Refer to Angular Getting Started before you start with this help topic.
The Pivot Grid component for Angular requires the following imports.
A class is marked as an Angular component through the @Component decorator:
Every jQWidgets Angular component has an [auto-create] attribute which determines whether the component is automatically created or is created on demand by API method call.
By default, the [auto-create] attribute value is true.
The AppComponent class is used to instantiate the app. In some of the examples, we use @ViewChild and ngAfterViewInit.
@ViewChild('pivotGridReference') myPivotGrid: jqxPivotGridComponent;
myPivotGrid
is available.
The following example demonstrates the PivotGrid
component for Angular.
Add the imports.
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { jqxPivotGridComponent } from 'jqwidgets-ng/jqxpivotgrid';
@Component decorator:
@Component({
selector: 'app-root',
template: `<jqxPivotGrid #pivotGridReference [auto-create]="false"></jqxPivotGrid>`
})
Create the AppComponent class.
@ViewChild('pivotGridReference') myPivotGrid: jqxPivotGridComponent;
setOptions
method.
ngAfterViewInit(): void
{
this.myPivotGrid.createComponent(this.pivotGridSettings);
}
The following example demonstrates how to create a PivotGrid component for Angular by using the createComponent method.
The properties which are defined as attributes can be changed directly:
To get or set a property, which we did not define or call a method, we can do the following:
Import @ViewChild decorator:
Add the PivotGrid component:
Get access to the PivotGrid component and its API:
Finally, we can call methods or set/get properties like that:
Every component has a method setOptions
which accepts a JSON object as an argument. This object contains component settings and you can use it to set a single or multiple properties dynamically.
The following example demonstrates how to add an event listener:
"on"
before the event name and upperCase it's the first letter.
The following example demonstrates how to invoke methods of the PivotGrid
component for Angular.