defaultOperation

задает операцию по умолчанию

string defaultOperation;

Values

  • "sum"
  • "count"
  • "min"
  • "max"
  • "avg"
  • "wavg"
  • "any"
  • кастомная операция
  • Example

    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"] }],
      },
    });

    Related samples

    Details

    Вы можете описать кастомную операцию в объекте operations.

    operations: {
      floor: v => v.reduce((acc, a) => acc + Math.floor(a), 0),
    },
    See also
    Наверх