ALL software version info
(this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc should be added within the dropdown below.)
Software Version Info
holoviews == 1.22.1
bokeh == 3.8.1
python == 3.14.2
Description of expected behavior and the observed behavior
I've got a hv.Holomap that I want to overlay in one key-dimension and then grid along another key-dimension. However, the gridding step results in an empty graph (and the the charts do not line up correctly with the axis).
Complete, minimal, self-contained example code that reproduces the issue
import pickle
import holoviews as hv
hv.extension("bokeh")
with open("test_holomap.txt", "rb") as file:
hm: hv.HoloMap = pickle.load(file)
hm = hm.overlay("model")
# hm.layout("class") # NOTE: this works.
hm.grid("class") # NOTE: this does not work.
Stack traceback and/or browser JavaScript console output
Screenshots or screencasts of the bug in action
ALL software version info
(this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc should be added within the dropdown below.)
Software Version Info
Description of expected behavior and the observed behavior
I've got a
hv.Holomapthat I want to overlay in one key-dimension and then grid along another key-dimension. However, the gridding step results in an empty graph (and the the charts do not line up correctly with the axis).Complete, minimal, self-contained example code that reproduces the issue
Stack traceback and/or browser JavaScript console output
Screenshots or screencasts of the bug in action