Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matplotlib boxplot bug #1163

Merged
merged 3 commits into from Feb 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions holoviews/plotting/mpl/chart.py
Expand Up @@ -259,7 +259,8 @@ class HistogramPlot(ChartPlot):
Whether to overlay a grid on the axis.""")

style_opts = ['alpha', 'color', 'align', 'visible', 'facecolor',
'edgecolor', 'log', 'capsize', 'error_kw', 'hatch']
'edgecolor', 'log', 'capsize', 'error_kw', 'hatch',
'linewidth']

def __init__(self, histograms, **params):
self.center = False
Expand Down Expand Up @@ -1058,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')
style.pop('label')
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