Class: AnalyticsFilter
A web component representing filters for dashboards, visualizations, and metrics.
HTMLElement
new AnalyticsFilter():
AnalyticsFilter
HTMLElement.constructor
components/analytics-filter/AnalyticsFilter.ts:26
get
dataSource():string
Returns the data source of the data to filter.
set
dataSource(val
):void
• val: string
string
The data source name.
components/analytics-filter/AnalyticsFilter.ts:49
get
fieldName():string
Returns the name of the field to filter.
set
fieldName(val
):void
• val: string
string
The field name.
components/analytics-filter/AnalyticsFilter.ts:61
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.
components/analytics-filter/AnalyticsFilter.ts:85
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.
components/analytics-filter/AnalyticsFilter.ts:73