Slicer items moving


#1

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?


#2

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

slicer.set('selectedOnTop', false)

This will remove that behaviour


#3

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