Class: AnalyticsFilter

A web component representing filters for dashboards, visualizations, and metrics.

  • HTMLElement

new AnalyticsFilter(): AnalyticsFilter

AnalyticsFilter

HTMLElement.constructor

get dataSource(): string

Returns the data source of the data to filter.

set dataSource(val): void

val: string

string

The data source name.


get fieldName(): string

Returns the name of the field to filter.

set fieldName(val): void

val: string

string

The field name.


get operator(): undefined | FilterOperator

Returns the filter operator value.

set operator(val): void

val: FilterOperator

undefined | FilterOperator

The filter operator value, or undefined if no operator is specified.


get values(): undefined | FilterValues

Returns the list of applied filter values.

set values(val): void

val: FilterValues

undefined | FilterValues

The list of filter values, or undefined if no values are specified.