Skip to content
New issue

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

Bokeh widget themes #375

Open
JohnLunzer opened this issue May 12, 2017 · 0 comments
Open

Bokeh widget themes #375

JohnLunzer opened this issue May 12, 2017 · 0 comments

Comments

@JohnLunzer
Copy link

There is a way to get Bokeh plots to take themes.

This call to bokeh.embed.component in the Bokeh widget takes a theme argument. The passed argument needs to be in the form of a bokeh.themes.Theme object which can take a filename (yaml file) or a dict (see source for example) as an argument on instantiation.

I wanted to take it upon myself to modify the code but I think I don't understand widget properties well enough. I tried to add a theme property by adding a new method with the @event.prop decorator but I can't get _plot_components method to recognize the theme value I pass into the BokehWidget. My modified example from the docs, passing a theme argument runs fine but the colors of the plots don't change.

Any guidance would be greatly appreciated.

Here is a "dark theme" for a yaml file:

attrs:
    Figure:
        background_fill_color: '#1C1C1C'
        border_fill_color: '#1C1C1C'
        outline_line_color: '#444444'
    Axis:
        axis_line_color: "white"
        axis_label_text_color: "white"
        major_label_text_color: "white"
        major_tick_line_color: "white"
        minor_tick_line_color: "white"
        minor_tick_line_color: "white"
    Grid:
        grid_line_dash: [6, 4]
        grid_line_alpha: .3
    Title:
        text_color: "white"
    Legend:
        label_text_color: "white"
        background_fill_color: '#121212'
        background_fill_alpha: 0.6
@almarklein almarklein added this to the v0.5 milestone Oct 13, 2017
@almarklein almarklein modified the milestones: v0.5, Long term Sep 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants