Skip to content

Commit

Permalink
Simplified style filtering on BoxPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 28, 2017
1 parent 08e6c4b commit cf0076a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/mpl/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,8 +1059,8 @@ def get_data(self, element, ranges, style):
data.append(group[group.vdims[0]])
labels.append(label)
style['labels'] = labels
style.pop('zorder', None)
style.pop('label', None)
style = {k: v for k, v in style.items()
if k not in ['zorder', 'label']}
style['vert'] = not self.invert_axes
format_kdims = [kd(value_format=None) for kd in element.kdims]
return (data,), style, {'dimensions': [format_kdims,
Expand Down

0 comments on commit cf0076a

Please sign in to comment.