Interface
Properties
| Property | Type | Notes |
|---|---|---|
onStatisticField | string | Field on which to perform the statistical operation. |
outStatisticFieldName | string | Field name for the returned statistic field. If outStatisticFieldName is empty or missing, the server will assign one. A valid field name can only contain alphanumeric characters and an underscore. If the outStatisticFieldName is a reserved keyword of the underlying DBMS, the operation can fail. Try specifying an alternative outStatisticFieldName. |
statisticParameters | { orderBy?: "desc" | "asc"; value: number } | Parameters to be used along with statisticType. Currently, only applicable for percentile_cont (continuous percentile) and percentile_disc (discrete percentile). |
statisticType | "max" | "min" | "sum" | "var" | "count" | "avg" | "stddev" | "percentile_cont" | "percentile_disc" | "EnvelopeAggregate" | "CentroidAggregate" | "ConvexHullAggregate" | "exceedslimit" | Statistical operation to perform (count, sum, min, max, avg, stddev, var, percentile_cont, percentile_disc, EnvelopeAggregate, CentroidAggregate, ConvexHullAggregate). |
onStatisticField
Interface PropertyonStatisticField: stringField on which to perform the statistical operation.
outStatisticFieldName
outStatisticFieldName: stringField name for the returned statistic field. If outStatisticFieldName is empty or missing, the server will assign one. A valid field name can only contain alphanumeric characters and an underscore. If the outStatisticFieldName is a reserved keyword of the underlying DBMS, the operation can fail. Try specifying an alternative outStatisticFieldName.
statisticParameters
statisticParameters: { orderBy?: "desc" | "asc"; value: number }Parameters to be used along with statisticType. Currently, only applicable for percentile_cont (continuous percentile) and percentile_disc (discrete percentile).
Type declaration
statisticType
Interface PropertystatisticType: "max" | "min" | "sum" | "var" | "count" | "avg" | "stddev" | "percentile_cont" | "percentile_disc" | "EnvelopeAggregate" | "CentroidAggregate" | "ConvexHullAggregate" | "exceedslimit"Statistical operation to perform (count, sum, min, max, avg, stddev, var, percentile_cont, percentile_disc, EnvelopeAggregate, CentroidAggregate, ConvexHullAggregate).