@limetech/lime-elements
Version:
29 lines (28 loc) • 833 B
JavaScript
/**
* The built-in aggregators available for columns
* @public
*/
export var ColumnAggregatorType;
(function (ColumnAggregatorType) {
/**
* Calculates the average value of all numerical cells in the column
*/
ColumnAggregatorType["Average"] = "avg";
/**
* Displays the maximum value from all numerical cells in the column
*/
ColumnAggregatorType["Maximum"] = "max";
/**
* Displays the minimum value from all numerical cells in the column
*/
ColumnAggregatorType["Minimum"] = "min";
/**
* Displays the sum of all numerical cells in the column
*/
ColumnAggregatorType["Sum"] = "sum";
/**
* Counts the number of non empty cells in the column
*/
ColumnAggregatorType["Count"] = "count";
})(ColumnAggregatorType || (ColumnAggregatorType = {}));
//# sourceMappingURL=table.types.js.map