Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

Trying to run panel in a notebook and get the following console errors: ``` python import os os.getenv("BOKEH_RESOURCES") import panel as pn pn.extension() pn.widgets.IntSlider() ``` ![image](https://user-images.githubusercontent.com/19758978/184479633-a074c3fc-a8f1-444b-8076-9d77745ca1e2.png) ``` yaml Kernel: restarting...

I have implemented your suggested changes but still got the error. From what I could see in the python codebase, when `CommManager` was initiated, it was always done with `plot_id`...

@philippjfr removed your pin commit as it could not solve the environment [[ref](https://github.com/holoviz/panel/actions/runs/2882734187)]. Have solved some notebook related problems: 1) The introduction of `bokeh.core.property.vectorization import Field, Value` which is mostly...

Buffers are now a custom class `bokeh.core.serialization.Buffer` and not a tuple(?) which can be unpacked. This gives a problem here: https://github.com/holoviz/panel/blob/84d8aecaa9cd5bafe56e28ec6d7adcfd6da8fb77/panel/io/document.py#L160-L163 And here: https://github.com/holoviz/panel/blob/84d8aecaa9cd5bafe56e28ec6d7adcfd6da8fb77/panel/io/notebook.py#L74-L76

@mattpap I have added a script that gives an overview of many of Panels custom Bokeh models in 08857d2. I have run it with bokeh 2.4 and get the following...

I see the same problem, but it seems like `streamz.DataFrames` are fundamentally broken right now (at least in notebook). Fullpath to the example in `hvplot/examples/user_guide/Streaming.ipynb`

This is an interesting find, definitely a bug. It seems to be related to the `legend_limit` default, which is 25. Which equals or exceeds the number of curves you have,...

DynamicMap reuses the existing plot layout, which is not possible going from integer -> string with the Bokeh backend, which is why you see the error. A way to change...

I agree that the matplotlib example should raise an error. It makes sense to me that it works if the starting option is categorial, as integers can also be put...

Get the following warning when running in a notebook. ``` ... Current lengths: ('data 2', 2), ('data_2', 0), ('index', 2) ... Current lengths: ('data[', 2), ('data_left_square_bracket', 0), ('index', 2) ```...