New to Kendo UI for jQuery? Download free 30-day trial

Local Binding

In this article, you will learn how to bind the PivotGridV2 to an array of data.

Data Array

The data array represents an array of objects with several fields. These fields can be used as PivotGridV2 dimensions.

The following code snippet showcases a small data sample from the Local Binding demo.

[{ "Country": "United States", "Sector": "Consumer Services", "Revenue": 5572312, "Year": 2015 },
{ "Country": "Poland", "Sector": "Finance", "Revenue": 933671, "Year": 2020 },
{ "Country": "Greece", "Sector": "Food", "Revenue": 7635202, "Year": 2019 },
{ "Country": "Greece", "Sector": "Consumer Services", "Revenue": 8492182, "Year": 2015 }]

The following code snippet showcases how you can bind the array of data to the PivotGridV2.

$("#pivotgrid").kendoPivotGrid({
    dataSource: {
    data: [
        { "Country": "United States", "Sector": "Consumer Services", "Revenue": 5572312, "Year": 2015 },
        { "Country": "Poland", "Sector": "Finance", "Revenue": 933671, "Year": 2020 },
        { "Country": "Greece", "Sector": "Food", "Revenue": 7635202, "Year": 2019 },
        { "Country": "Greece", "Sector": "Consumer Services", "Revenue": 8492182, "Year": 2015 }
        ]
    }
});

Columns and Rows

You can construct the PivotGridV2 table by using the fields from the sample data in the previous section.

  1. Configure the schema.

            schema: {
              model: {
                fields: {
                  Country: { type: "string" },
                  Revenue: { type: "number" },
                  Year: { type: "number" },
                  Sector: { type: "string" }
                }
              },
              cube: {
                dimensions: {
                  Country: { caption: "All Countries" },
                  Sector: { caption: "All Sectors" },
                  Year: { caption: "All Years" }
                },
                measures: {
                  "Sum": { field: "Revenue", format: "{0:c}", aggregate: "sum" },
                  "Average": { field: "Revenue", format: "{0:c}", aggregate: "average" }
                }
              }
            }
    
  2. Configure the columns, rows, and measures.

            columns: [{ name: "Year", expand: true }, { name: "Sector" } ],
            rows: [{ name: "Country", expand: true }],
            measures: ["Sum", "Average"]
    

Demo

The following example showcases the full implementation of the previous steps.

<div>
    <div id="container">
        <div id="pivotgrid"></div>
        <div id="configurator"></div>
        <div id="pivotbutton"></div>
    </div>
</div>

<script src="https://demos.telerik.com/kendo-ui/content/shared/js/countries-revenue.js"></script>
<script>
    $(document).ready(function () {
        var pivotgrid = $("#pivotgrid").kendoPivotGridV2({
                columnWidth: 120,
                height: 570,
                dataSource: {
                    data: revenue, // Use the full array of data.
                    sort: { field: "Year", dir: "asc" },
                    schema: {
                        model: {
                            fields: {
                                Country: { type: "string" },
                                Revenue: { type: "number" },
                                Year: { type: "number" },
                                Sector: { type: "string" }
                            }
                        },
                        cube: {
                            dimensions: {
                                Country: { caption: "All Countries" },
                                Sector: { caption: "All Sectors" },
                                Year: { caption: "All Years" }
                            },
                            measures: {
                                "Sum": { field: "Revenue", format: "{0:c}", aggregate: "sum" },
                                "Average": { field: "Revenue", format: "{0:c}", aggregate: "average" }
                            }
                        }
                    },
                    columns: [{ name: "Year" }, { name: "Sector", expand: true } ],
                    rows: [{ name: "Country", expand: true }],
                    measures: ["Sum", "Average"]
                }
            }).data("kendoPivotGridV2");

            $("#configurator").kendoPivotConfiguratorV2({
                dataSource: pivotgrid.dataSource,
                filterable: true,
                sortable: true
            });

            $("#pivotbutton").kendoPivotConfiguratorButton({
                configurator: "configurator"
            });

            $("#container").kendoPivotContainer({
                configuratorPosition: "left"
            });
    });
</script>

Known Limitations

When you bind the PivotGridV2 to a flat data structure, the component processes the data on the client (browser) and creates a client cube representation (configuration). This means that the component uses the processing power of the browser to project the data and produce the required categorized data output. Even though the PivotGridV2 does not restrict the maximum amount of data that you can bind to it, the data has limits that are directly related to the browser's capability to handle the loaded dataset.

The symptoms for an overloaded browser are:

  • The browser is loading extremely slowly or gets unresponsive for a long time.
  • The browser is crashing when loading or updating the dimensions/measures.

If you observe any of these symptoms, this means you have hit the processing limit of the browser. To work around this issue, use a dedicated OLAP solution like Microsoft SSAS.

In this article