getStructure

returns the current Pivot structure

object getStructure();
objectthe current Pivot structure

Example

const structure = $$("pivot").getStructure();

Related samples

Details

Format of an object being returned is the same as the structure parameter of the constructor:

const structure = $$("pivot").getStructure();
/*
    {
        columns: ["year"],
        filters: [ ... ],
        groupBy: "year",
        rows: ["form", 'name"],
        values: [{name: "oil", operation: "min", color: "#e33fc7"}, ...]
    }
*/
See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix ui component library and page of javascript pivot grid product.