We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
show_label=False doesn't work on HighlightedTextm, though it can be hidden by setting label="".
import gradio as gr with gr.Blocks(theme=gr.themes.Ocean()) as demo: gr.HighlightedText( value=[["UK", "+"], ["USA", "-"], ["China", "*"], ["Australia", "*"]], show_legend=True, show_label=False, # label='', color_map={"*": "yellow", "+": "green", "-": "red"}) gr.HighlightedText( value=[["UK", "+"], ["USA", "-"], ["China", "*"], ["Australia", "*"]], show_legend=True, show_label=False, label='', color_map={"*": "yellow", "+": "green", "-": "red"}) if __name__ == "__main__": demo.launch()
.
Gradio Playground
I can work around it
The text was updated successfully, but these errors were encountered:
Can repro, thanks for reporting @sthemeow!
Sorry, something went wrong.
No branches or pull requests
Describe the bug
show_label=False doesn't work on HighlightedTextm, though it can be hidden by setting label="".
Have you searched existing issues? 🔎
Reproduction
Screenshot
Logs
.
System Info
Severity
I can work around it
The text was updated successfully, but these errors were encountered: