Slicer items moving

Hello, I have a Slicer, but it seems like when I select some items they are being moved to the top of the list. I want to keep the original order of the items in the list, but still be able to select them. Is there a way to do this?

What you need is a single property called selectedOnTop, here is an example:

slicer.set('selectedOnTop', false)

This will remove that behaviour

I didn’t expect it to be so easy, but it worked perfectly, thank you very much.