Select Box without label

Is it possible to have a select box in a column list without having to put the label on it. The label completely destroys the row in the list. An empty string still destroys the layout.

Basically I’d like to print the row as a single line with the select box in line with the other widgets.

you can delete the label “change period” from your code, and it will not appear in your web page any more.

st.selectbox("",('sum','max','min','count'))

Thanks, I tried that but the “” string still takes up space and pushes the box
below anyway.

maybe you can try different layout,
same height components put inside a same area.

Thanks @BeyondMyself

Unfortunately I’m dynamically creating the list and it can sometimes be quite long. The extra space looks terrible and creates a lot of extra scrolling.