Xavier Artusi
Xavier Artusi
fix https://github.com/holoviz/panel/issues/3316
### Software versions Python version : 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] IPython version : (not installed) Tornado version : 6.3.3 Bokeh version : 3.1.1...
panel 0.14.0 MRE (extract from a larger code) ```python import param import panel as pn import pandas as pd from bokeh.models.widgets.tables import SelectEditor pn.extension("tabulator") class AnnotationCard(pn.viewable.Viewer, pn.viewable.Layoutable): title = param.String(default="Annotations")...
#### ALL software version info panel Version: 0.13.1 jupyterlab Version: 3.3.4 #### Description of expected behavior and the observed behavior Panel with holoviews hook interaction working in server mode but...
MRE: ```python import panel as pn template = pn.template.FastGridTemplate(dimensions ={'minW': "300", 'maxW': 'Infinity', 'minH': 0, 'maxH': 'Infinity'}) template.main[:3,:3] = pn.Tabs(("Tab1", None), ("Tab2", None), sizing_mode="stretch_both") template.show() ``` 
I have an app inside a FastGridTemplate and I plot some images with a colorbar:  However I would like to change the background alpha of the colorbar I tried...