задает операцию по умолчанию
webix.ui({
view: "pivot",
url: "https://docs.webix.com/pivot-backend/",
defaultOperation: "avg", structure: {
rows: ["form", "name"],
columns: ["year"],
values: [{ name: "oil", operation: ["min", "max", "sum"] }],
},
});
Вы можете описать кастомную операцию в объекте operations
.
operations: {
floor: v => v.reduce((acc, a) => acc + Math.floor(a), 0),
},