DashboardNumericRangeFilter

data class DashboardNumericRangeFilter(val aggregationFunction: DashboardAggregationFunction? = null, val column: DashboardColumnIdentifier, val defaultFilterControlConfiguration: DashboardDefaultFilterControlConfiguration? = null, val filterId: String, val includeMaximum: Boolean? = null, val includeMinimum: Boolean? = null, val nullOption: DashboardFilterNullOption, val rangeMaximum: DashboardNumericRangeFilterValue? = null, val rangeMinimum: DashboardNumericRangeFilterValue? = null, val selectAllOptions: DashboardNumericFilterSelectAllOptions? = null)

Constructors

Link copied to clipboard
constructor(aggregationFunction: DashboardAggregationFunction? = null, column: DashboardColumnIdentifier, defaultFilterControlConfiguration: DashboardDefaultFilterControlConfiguration? = null, filterId: String, includeMaximum: Boolean? = null, includeMinimum: Boolean? = null, nullOption: DashboardFilterNullOption, rangeMaximum: DashboardNumericRangeFilterValue? = null, rangeMinimum: DashboardNumericRangeFilterValue? = null, selectAllOptions: DashboardNumericFilterSelectAllOptions? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The aggregation function of the filter.

Link copied to clipboard

The column that the filter is applied to.

Link copied to clipboard

The default configurations for the associated controls. This applies only for filters that are scoped to multiple sheets.

Link copied to clipboard

An identifier that uniquely identifies a filter within a dashboard, analysis, or template.

Link copied to clipboard
val includeMaximum: Boolean? = null

Determines whether the maximum value in the filter value range should be included in the filtered results.

Link copied to clipboard
val includeMinimum: Boolean? = null

Determines whether the minimum value in the filter value range should be included in the filtered results.

Link copied to clipboard

This option determines how null values should be treated when filtering data.

Link copied to clipboard

The maximum value for the filter value range.

Link copied to clipboard

The minimum value for the filter value range.

Link copied to clipboard

Select all of the values. Null is not the assigned value of select all.