diff --git a/holoviews/plotting/bokeh/element.py b/holoviews/plotting/bokeh/element.py index f5b4eb2343..814a0cdba6 100644 --- a/holoviews/plotting/bokeh/element.py +++ b/holoviews/plotting/bokeh/element.py @@ -1027,7 +1027,7 @@ class ColorbarPlot(ElementPlot): def _draw_colorbar(self, plot, color_mapper): if CategoricalColorMapper and isinstance(color_mapper, CategoricalColorMapper): return - if LogColorMapper and isinstance(color_mapper, LogColorMapper): + if LogColorMapper and isinstance(color_mapper, LogColorMapper) and color_mapper.low > 0: ticker = LogTicker() else: ticker = BasicTicker()