Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

To get this to work with `axiswise=True` you need to also add it to the overlays: ``` python sa = hv.Scatter(data = np.random.random((100, 2))).opts(axiswise=True) sb = hv.Scatter(data = np.random.random((100, 2))).opts(axiswise=True)...

If I change the following lines from `us` to `ns`or remove the `datetime` conversion, I can get the code to work. https://github.com/holoviz/holoviews/blob/0defcef994d6dd6d2054f75a0e332d02d121f8b0/holoviews/operation/datashader.py#L769-L774 ![image](https://user-images.githubusercontent.com/19758978/159729559-899a12c6-fa51-4995-8fe5-5fbefc7304f8.png)

A git bisect shows that https://github.com/holoviz/holoviews/pull/5265 is the culprit. (git commit: `9265a12dca74dd84b411d31771eb2ef7bbab6ee1`)

I still see the problem here is my versions: ``` pn.__version__ '0.14.0a9+gbd32dd50-dirty' hv.__version__ '1.15.0.post10+g29ccf905e' ```

This workaround works because it avoids setting `x_range = self.p.range` in the following lines but instead calculates them based on the element range. Where `self.p.range` is the plot's range, which...

I will reopen this issue as the merged PR is being reverted in #5457. It is still the plan to implement this.

Same as #5381, this is because of changes made in #5265.

I can recreate the problem and I think the culprit is related to `hv.render`. If I modify the original code to the following and run it with `memray run file.py`...

@philippjfr, this was automatically closed. Can you open it again?

@philippjfr Could a solution to this be to add a `weakref.ref` for this function? https://github.com/holoviz/holoviews/blob/a780aebb3375fa6b3eae8607372382db885e913a/holoviews/plotting/bokeh/renderer.py#L64-L75 I tried the following: ``` python plot = super().get_plot(obj, doc, renderer, **kwargs) if plot.document is...