Xavier Artusi

Results 6 issues of 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...

TRIAGE

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")...

type: bug
component: tabulator

#### 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() ``` ![fast_grid_diensions_bug](https://user-images.githubusercontent.com/18531147/163593452-c346f11b-16b6-409a-9c53-b2240f9207c7.gif)

I have an app inside a FastGridTemplate and I plot some images with a colorbar: ![image](https://user-images.githubusercontent.com/18531147/145218792-6a2e181f-2c16-4f47-ac1e-839d74ad8b73.png) However I would like to change the background alpha of the colorbar I tried...

type: docs