Display Choice component in chips mode horizonatally

Hi,

Is there any way other than custom CSS to display choice component in chips mode horizontally in ONE line, so users can scroll horizontally to pick up the selection?

Currently, it looks like this:

I can achieve this by having a container whole row and put list inside container and set list mode horizontal. But wondering is there any other simple way.

Thanks

Not that I am aware of.

In case someone wants to try with css…

.scroll-container {
    overflow:auto;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-choice {
    width: max-content; 
}
3 Likes