DimensionFilter: {
    dimension: DimensionName;
    operator: FilterOperator;
    value: number;
}

A filter that can be applied to dimensions to filter out unwanted points during processing.

Type declaration

  • dimension: DimensionName

    The dimension this filter applies to. If this dimension is not present in the source, the filter is ignored.

  • operator: FilterOperator

    The operator of the predicate to apply to a specific dimension value.

  • value: number

    The value to apply the predicate to.