dhtmlxPivot is a component that presents a client-side grid which is able to quickly analyze data from large datasets and render the result in a detailed but compact way. It lets compare and sort complex data within one table and easily adjust the scheme of data analysis.
In this article you will explore the complex structure of DHTMLX Pivot for better understanding of its functionality.
There are two main parts:
This area consists of four sections:
Elements (fields) presented in the above described sections correlate to data item properties from the dataset.
{
"name": "Argentina",
"year": 2005,
"continent": "South America",
"form": "Republic",
"gdp": 181.357,
"oil": 1.545,
"balance": 4.699,
"when": "10.10.10"
}
You can set them to some of the sections initially or drag fields between sections to change the Pivot structure dynamically.
Let's have a deeper look at the sections:
Related sample: Initialization
The current data operations are specified next to the data values in the Data section. You can choose the neccessary operation by clicking a toggle next to the corresponding data field.
There are four types of data operations you can choose from:
Related sample: Initialization
To start working with dhtmlxPivot, follow the step-by-step How to Start tutorial.
Back to top