Get a sample code of a pivot view for a DataTree. This sample code allows transforming tree data into a pivot chart. If you like this programming example, feel free to use it for creating your own web application.
webix.ready(function() { webix.CustomScroll.init(); webix.ui({ view: "pivot", mode: "table", datatable: { cleanRows: true, }, structure: { rows: ["form", "name"], columns: ["year"], values: [{ name: "oil", operation: ["min", "sum"] }], }, url: "https://cdn.webix.com/demodata/pivot.json", }); });