Replies: 1 comment 1 reply
-
Unfortunately getFacetedUniqueValues() currently does not work for columns containing an array of strings. You can work around this issue as follows to get the correct value:
I hope I was helpful :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I customize the column and make it can display multiple values in each cell. However, I find the getFacedUniqueValues() does not work for cell contain array of strings. How can I make it calcuate the correct number of unique string?
For example:
| Column A |.
|. [a, b]|
| [a]. |
|. [b]. |
|. [a, b] |
I expected the getFacedUniqueValues() return a Map with (a,3), (b,3). Instead it didn't behave this way. How should I solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions