UNPKG

@limetech/lime-elements

Version:
28 lines (27 loc) 833 B
/** * 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 = {}));