The bound of cells which will be calculated together with cell value of Calculated Column of cached.
It is used as CalculatedColumn.calcBounds property. Calculation area is specified by CalculatedColumn.calcRange property.
GRID | "grid" | Calculate all grid rows. |
GROUP | "group" | Calculate terminal grid rows belonging to the same row group. |
grid.setColumns([{
name: "colQuantity",
type: "calced",
cached: true,
calcBounds: DataLudi.ColumnCalcBounds.GRID,
calcRange: DataLudi.ColumnCalcRange.FIRST,
valueExpression: "quantity + prevval",
...
},
...
];