# Function MemberFilterTile

MemberFilterTile(props, deprecatedLegacyContext?): null | ReactElement< any, any >

UI component that allows the user to select members to include/exclude in a filter. A query is executed against the provided data source to fetch all members that are selectable.

# Parameters

Parameter Type Description
props MemberFilterTileProps Member filter tile props
deprecatedLegacyContext? any ::: warning Deprecated

:::

See

React Docs (opens new window)

# Returns

null | ReactElement< any, any >

Member filter tile component

# Example

Below is an example for filtering countries in the Country dimension of the Sample ECommerce data model.

const [countryFilter, setCountryFilter] = useState<Filter | null>(null);

return (
<MemberFilterTile
  title={'Country'}
  attribute={DM.Country.Country}
  filter={countryFilter}
  onChange={setCountryFilter}
/>
);