Skip to content

Commit

Permalink
Do not set explicit Colobar ticker
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 7, 2018
1 parent 347e611 commit 19760b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Expand Up @@ -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()
Expand Down

0 comments on commit 19760b9

Please sign in to comment.