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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
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.