Skip to content

Commit

Permalink
Fixed bug in non-colormapped SideHistogram (#3377)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Jan 10, 2019
1 parent c80f60f commit 7a5cedc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/mpl/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def _update_plot(self, key, element, bars, lims, ranges):
cidx = opts.options.get('color_index', None)
if cidx is None:
opts = self.lookup_options(range_item, 'style')
cidx = opts.options.get('color', None)
cidx = opts.kwargs.get('color', None)
if cidx not in range_item:
cidx = None
cdim = None if cidx is None else range_item.get_dimension(cidx)
Expand Down

0 comments on commit 7a5cedc

Please sign in to comment.