There's a bug in the optionDataSource/valueMap lookup when using grouping and optionDataSources
If you group by a column that can take multiple values, it correctly substitutes the valueMap key -> string for single values, but for double values the key values are shown with a "," in between.
It looks to me like the lookup is being done at the wrong time, ie, it combines the keys into a comma list THEN does the lookup (and can't find it). It should do the lookup for the key, THEN combine in a comma list.
If you group by a column that can take multiple values, it correctly substitutes the valueMap key -> string for single values, but for double values the key values are shown with a "," in between.
It looks to me like the lookup is being done at the wrong time, ie, it combines the keys into a comma list THEN does the lookup (and can't find it). It should do the lookup for the key, THEN combine in a comma list.
Comment