Skip to main content
A newer version of this page is available.

DXAggregationType Enum

Lists values specifying the aggregation function which an axis uses.

Declaration

typedef NS_ENUM(NSInteger, DXAggregationType) {
    DXAggregationTypeMin,
    DXAggregationTypeMax,
    DXAggregationTypeSum,
    DXAggregationTypeCount,
    DXAggregationTypeAverage,
}

Members

Name Description
DXAggregationTypeMin

Aggregates data by calculating the min value for an interval.

DXAggregationTypeMax

Aggregates data by calculating the max value for an interval.

DXAggregationTypeSum

Aggregates data by calculating the summary for an interval.

DXAggregationTypeCount

Aggregates data by calculating the number of non-null values within an interval.

DXAggregationTypeAverage

Aggregates data by calculating the average value for an interval.