Skip to content

Commit

Permalink
Fixed bug in new bokeh legend option handling
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 8, 2019
1 parent 1d048a0 commit 2dae4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Expand Up @@ -1100,7 +1100,7 @@ def _glyph_properties(self, plot, element, source, ranges, style, group=None):
legend = element.label
if legend and self.overlaid:
legend_prop = 'legend_label' if bokeh_version >= '1.3.5' else 'legend'
properties[legend_prop] = value(legend)
properties[legend_prop] = legend
return properties


Expand Down

0 comments on commit 2dae4bb

Please sign in to comment.