Hi, I'm using AGOL Experience builder to build an interactive web map that enables filtering data based on a layer that is built off of a series of unions.
I'm using the filter widget to enable toggling on/off different data groups (using OR statements).
My issue arises from the fact that I have multiple filter widgets to sort data groups into larger themes. I want to be able to continue to use these filters as OR statements, but turning on a filter group from two different filter widgets appears to only be able to function as an AND statement between the widgets.
e.g.,
Widget 1:
Group A on, Group B on, Group C off:
Displays data from (Group A OR Group B)
if I then use
Widget 2:
Group X on, Group Y on, Group Z off:
Displays data as (Group A OR Group B) AND (Group X OR Group Y).
I need (Group A OR Group B) OR (Group X OR Group Y).
Is this possible? Do I need to use a custom widget for this? Is this even possible with custom widgets?
Thanks for any help.