Skip to content

Commit

Permalink
Merge pull request #554 from basnijholt/master
Browse files Browse the repository at this point in the history
Enable both logx and logy
  • Loading branch information
philippjfr committed Mar 14, 2016
2 parents 610cfdc + 0d57c55 commit 913faac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/mpl/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _finalize_axis(self, key, title=None, dimensions=None, ranges=None, xticks=N
# Apply log axes
if self.logx:
axis.set_xscale('log')
elif self.logy:
if self.logy:
axis.set_yscale('log')

if not self.projection == '3d':
Expand Down

0 comments on commit 913faac

Please sign in to comment.