Skip to content

Commit

Permalink
Fixed seaborn plot axis labels
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 20, 2016
1 parent 941acd2 commit 0af50d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/mpl/seaborn.py
Expand Up @@ -147,7 +147,7 @@ def get_data(self, element, ranges, style):
style.pop('zorder', None)
if self.invert_axes:
style['vertical'] = True
axis_kwargs = dict(xlabel='', ylabel=str(element.get_dimension(0)))
axis_kwargs = dict(dimensions=[element.get_dimension(0)])
return (element.dimension_values(0),), style, axis_kwargs

def init_artists(self, ax, plot_data, plot_kwargs):
Expand Down

0 comments on commit 0af50d6

Please sign in to comment.