You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/main/src/components/AnalyticalTable/AnalyticalTable.mdx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ const TableComp = () => {
110
110
|`disableFilters`|`boolean`| Disable filters for this column |
111
111
|`disableGlobalFilter`|`boolean`| Disable global filtering for this column |
112
112
|`defaultCanFilter`|`boolean`| If set to true, this column will be filterable, regardless if it has a valid `accessor`|
113
-
|`filter`|`string OR Function`| Either a string or a filter function.<br />Supported String Values: <ul><li>`text`</li><li>`exactText`</li><li>`exactTextCase`</li><li>`equals`</li></ul>|
113
+
|`filter`|`string OR Function`| Either a string or a filter function.<br />Supported String Values: <ul><li>`text`</li><li>`exactText`</li><li>`exactTextCase`</li><li>`equals`</li></ul>**Note:** When the standard `Filter` component is used, the filter function is not triggered if the `filterValue` is empty, as the filter is then removed.|
114
114
|`Aggregated`|`ComponentType`| Component to render for aggregated cells |
115
115
|`aggregate`|`string` OR<br/> `((leafValues, aggregatedValues) => any)`| Aggregation function or string.<br />Supported String Values: <ul><li>`sum`</li><li>`min`</li><li>`max`</li><li>`minMax`</li><li>`average`</li><li>`median`</li><li>`unique`</li><li>`uniqueCount`</li><li>`count`</li></ul> |
116
116
|`aggregateValue`|`string` OR<br/> `((values, row, column) => any)`| When attempting to group/aggregate non primitive cell values (eg. arrays of items) you will likely need to resolve a stable primitive value like a number or string to use in normal row aggregations. This property can be used to aggregate or simply access the value to be used in aggregations eg. count-ing the unique number of items in a cell's array value before sum-ing that count across the table |
* __Note:__ When the standard `Filter` component is used, the filter function is not triggered if the `filterValue` is empty, as the filter is then removed.
0 commit comments