docs/reference/interfaces/Table_RowModels_Faceted.md
Defined in: features/column-faceting/columnFacetingFeature.types.ts:24
TFeatures extends TableFeatures
TData extends RowData
getFacetedMinMaxValues: () => [number, number] | undefined;
Defined in: features/column-faceting/columnFacetingFeature.types.ts:32
A function that computes and returns a min/max tuple derived from column.getFacetedRowModel. Useful for displaying faceted result values.
⚠️ Requires that you pass a valid
getFacetedMinMaxValuesfunction tooptions.getFacetedMinMaxValues. A default implementation is provided via the exportedgetFacetedMinMaxValuesfunction.
[number, number] | undefined
getFacetedRowModel: () => RowModel<TFeatures, TData>;
Defined in: features/column-faceting/columnFacetingFeature.types.ts:37
Returns the row model with all other column filters applied, excluding its own filter. Useful for displaying faceted result counts.
⚠️ Requires that you pass a valid
getFacetedRowModelfunction tooptions.facetedRowModel. A default implementation is provided via the exportedgetFacetedRowModelfunction.
RowModel<TFeatures, TData>
getFacetedUniqueValues: () => Map<any, number>;
Defined in: features/column-faceting/columnFacetingFeature.types.ts:42
A function that computes and returns a Map of unique values and their occurrences derived from column.getFacetedRowModel. Useful for displaying faceted result values.
⚠️ Requires that you pass a valid
getFacetedUniqueValuesfunction tooptions.getFacetedUniqueValues. A default implementation is provided via the exportedgetFacetedUniqueValuesfunction.
Map<any, number>