Xavier Artusi

Results 12 comments of Xavier Artusi

I think it's a bug on vtk.js side. I opened an issue on their github: https://github.com/Kitware/vtk-js/issues/2531

Which elements would you like to display? For the axes it should be possible however I don't know how it played with the opacity of the volume. For the colorbar...

It's possible, but I think we should wait for https://github.com/holoviz/panel/pull/1070

```python import param import panel as pn import numpy as np import pyvista as pv from panel.reactive import ReactiveHTML from panel.pane.vtk import synchronizable_serializer pn.extension("vtk") class CustomVTKPanel(ReactiveHTML): """ Custom VTK 3d...

2 choices : - don't use `jslink=True` - set `max_data_size` to an higher value

I wonder if it's not a duplicate of https://github.com/holoviz/panel/issues/3117

Some times ago I implemented this widget: ![ms_widget](https://user-images.githubusercontent.com/18531147/150354330-09f3ed88-52ee-4a5f-b42e-64ab2e3588fd.gif) It needs some polish but it can be a base The code can be found in this repository https://github.com/xavArtley/BokehParallelCoordinates.git https://github.com/xavArtley/BokehParallelCoordinates/blob/7a743e5d92e72072fa647bbb225dd122a1bf280f/pcp/models/multiselect.py https://github.com/xavArtley/BokehParallelCoordinates/blob/7a743e5d92e72072fa647bbb225dd122a1bf280f/pcp/models/multiselect.ts

My work around : ```javascript const tabs_content = document.getElementsByClassName("tabby-content") Array.from(tabs_content).forEach(el => el.addEventListener( "transitionend", evt => { if (evt.propertyName == "transform") { const bkfigures = Array.from(evt.target.getElementsByClassName("bk-Figure")) Bokeh.index.roots.filter(root => bkfigures.includes(root.el)).map(root => {...

For the moment you can change the displayed value using a Tickformatter: ```python s = Slider(start=0, end=1, value=0.5, step=0.1, format=FuncTickFormatter(code="return Math.exp(tick).toFixed(2)")) ```

Do this: ``` controls = pn.Param(t, parameters=['a', 'b'], widgets={'a': pn.widgets.LiteralInput, 'b': pn.widgets.LiteralInput}) controls ```