Bokeh Layout Vertical Alignment With Buttons
I am looking for a workaround to an issue in Bokeh. When you put a button and a text input in a row- they will be un-alighned. This effect happens because the text input has a labe
Solution 1:
set css_classes
property of the TextInput
:
input = TextInput(value="Bokeh", css_classes=["hide-label"])
Add style to index.html
in templates folder if your application is a folder:
<style>.hide-labellabel{
display: none !important;
}
</style>
If the application is a script file, then add a Div
element with the style sheet.
Post a Comment for "Bokeh Layout Vertical Alignment With Buttons"