Defined in: features/column-faceting/columnFacetingFeature.types.ts:45
TFeatures extends TableFeatures
TData extends RowData
optional facetedMinMaxValues: (table, columnId) => () => [number, number] | undefined;optional facetedMinMaxValues: (table, columnId) => () => [number, number] | undefined;Defined in: features/column-faceting/columnFacetingFeature.types.ts:52
This function is used to retrieve the faceted min/max values. If using server-side faceting, this function is not required. To use client-side faceting, pass the exported getFacetedMinMaxValues() from your adapter to your table or implement your own.
Table<TFeatures, TData>
string
(): [number, number] | undefined;(): [number, number] | undefined;[number, number] | undefined
optional facetedRowModel: (table, columnId) => () => RowModel<TFeatures, TData>;optional facetedRowModel: (table, columnId) => () => RowModel<TFeatures, TData>;Defined in: features/column-faceting/columnFacetingFeature.types.ts:59
This function is used to retrieve the faceted row model. If using server-side faceting, this function is not required. To use client-side faceting, pass the exported getFacetedRowModel() from your adapter to your table or implement your own.
Table<TFeatures, TData>
string
(): RowModel<TFeatures, TData>;(): RowModel<TFeatures, TData>;RowModel<TFeatures, TData>
optional facetedUniqueValues: (table, columnId) => () => Map<any, number>;optional facetedUniqueValues: (table, columnId) => () => Map<any, number>;Defined in: features/column-faceting/columnFacetingFeature.types.ts:66
This function is used to retrieve the faceted unique values. If using server-side faceting, this function is not required. To use client-side faceting, pass the exported getFacetedUniqueValues() from your adapter to your table or implement your own.
Table<TFeatures, TData>
string
(): Map<any, number>;(): Map<any, number>;Map<any, number>