Closed poplarShift closed 5 years ago
The issue was specifying the backend in the options call: hv.QuadMesh(da, ['lon', 'lat'], ['air']).opts(colorbar=True, cmap='cividis', backend='matplotlib')
.
This is relatively confusing, because when I specify an Options
object it does not seem to register the currently active backend either:
hv.Options('Image', cmap='fire')
just returns Options('Image', cmap='fire')
with no mention of the backend, yet those options will be respected in the respective backend.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Below, when bokeh is loaded first, it breaks matplotlib output even though I select
hv.output(..., backend='matplotlib')
.What 'breaks' is that colorbar and cmap options are completely disregarded.
I have not found a workaround. After a
hv.extension('bokeh', 'matplotlib')
at any point, holoviews seems bent on not letting me have my colorbar.