getFacetedRowModel
type getFacetedRowModel = () => RowModel<TData>
⚠️ Requires that you pass a valid
getFacetedRowModel
function tooptions.facetedRowModel
. A default implementation is provided via the exportedgetFacetedRowModel
function.
Returns the row model with all other column filters applied, excluding its own filter. Useful for displaying faceted result counts.
getFacetedUniqueValues
getFacetedUniqueValues: () => Map<any, number>
⚠️ Requires that you pass a valid
getFacetedUniqueValues
function tooptions.getFacetedUniqueValues
. A default implementation is provided via the exportedgetFacetedUniqueValues
function.
A function that computes and returns a Map
of unique values and their occurrences derived from column.getFacetedRowModel
. Useful for displaying faceted result values.
getFacetedMinMaxValues
getFacetedMinMaxValues: () => Map<any, number>
⚠️ Requires that you pass a valid
getFacetedMinMaxValues
function tooptions.getFacetedMinMaxValues
. A default implementation is provided via the exportedgetFacetedMinMaxValues
function.
A function that computes and returns a min/max tuple derived from column.getFacetedRowModel
. Useful for displaying faceted result values.
getColumnFacetedRowModel
getColumnFacetedRowModel: (columnId: string) => RowModel<TData>
Returns the faceted row model for a given columnId.
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.