I’m developing a Panel app with a customized look and feel.
Now I’m trying to change the default color map of Holoviews before I panel.serve
my apps.
Currently it looks like
Its actually good. But I need to change it to a specific color scheme for corporate reasons.
I’ve tried playing around with the instructions from http://holoviews.org/user_guide/Colormaps.html, http://holoviews.org/user_guide/Styling_Plots.html and http://holoviews.org/user_guide/Applying_Customizations.html without luck.
For example setting
hv.Cycle.default_cycles["default_colors"] = colors.COLOR_CYCLE
where colors.COLOR_CYCLE
is a list of colors.
or setting
opts.defaults(
color=hv.Cycle(colors.COLOR_CYCLE)
)
But without luck.