The st.radio docs say that buttons can be arranged horizontally using the kwarg
horizontal=True
but this is not being recognised as a valid arg. I am on v.1.11.0. Any ideas?
The st.radio docs say that buttons can be arranged horizontally using the kwarg
horizontal=True
but this is not being recognised as a valid arg. I am on v.1.11.0. Any ideas?
Hi @altanner
It’s highly likely that you have multiple versions of Streamlit installed in different local environments. And the environment in which your app is running is likely using an older version.
As a sanity check that your app indeed uses v1.11.0, include the following right before you call st.radio
with horizontal=True
and share a screenshot of the output:
st.write(st.__version__)
For example:
import streamlit as st
st.write(st.__version__)
genre = st.radio(
"What's your favorite movie genre",
('Comedy', 'Drama', 'Documentary'),
horizontal=True)
if genre == 'Comedy':
st.write('You selected comedy.')
else:
st.write("You didn't select comedy.")
Best,
Snehan
ah yes, thank you so much. not sure what happened there but my venv
s must have got all tangled up somehow!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.