Defined in: features/column-faceting/columnFacetingFeature.types.ts:26
TFeatures extends TableFeatures
TData extends RowData
getFacetedMinMaxValues: () => [number, number] | undefined;Defined in: features/column-faceting/columnFacetingFeature.types.ts:35
Computes min/max numeric facet values for the active faceting context.
Requires a facetedMinMaxValues row-model factory on the features option.
[number, number] | undefined
getFacetedRowModel: () => RowModel<TFeatures, TData>;Defined in: features/column-faceting/columnFacetingFeature.types.ts:41
Computes the row model used to derive facet values.
Requires a facetedRowModel row-model factory on the features option.
RowModel<TFeatures, TData>
getFacetedUniqueValues: () => Map<any, number>;Defined in: features/column-faceting/columnFacetingFeature.types.ts:47
Computes unique facet values and occurrence counts.
Requires a facetedUniqueValues row-model factory on the features option.
Map<any, number>