ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Is there a way to change the display order of the data options in a MemberFilterTile? Unfortunately, custom sorting is not possible for now as it is applied by the backend (DB). We don't sort the array of filter members on the client side because we have lazy-loading of members, so data chunks should come to the client already sorted by the backend. Perhaps, at some point, we will add the possibility of passing a raw members array to the filter-tile instead of loading them from the DB. This way, you will be able to query all the members you need and sort them as you want before passing them to filter-tile. However, currently, it is not possible. Re: Is there a way to change the display order of the data options in a MemberFilterTile? Yes, you can. You need to sort an Attribute that you are using for this filter. For example: import { filterFactory, Sort } from '@sisense/sdk-data'; const sortedYearsAttribute = DM.Commerce.Date.Years.sort(Sort.Descending); const filter = filterFactory.members(sortedYearsAttribute, ['2013-01-01T00:00:00']); //... return ( <MemberFilterTile title={'Year'} attribute={sortedYearsAttribute} filter={filter} /> )