Skip to content

Commit

Permalink
Merge pull request #543 from ioam/plot_fixes
Browse files Browse the repository at this point in the history
Small plotting fixes since recent refactor
  • Loading branch information
jlstevens committed Mar 11, 2016
2 parents b70b7e7 + d32475b commit 454cc95
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 @@ -575,7 +575,7 @@ def _norm_kwargs(self, element, ranges, opts, vdim):
"""
clim = opts.pop('clims', None)
if clim is None:
clim = ranges.get(vdim.name)
clim = ranges[vdim.name] if vdim.name in ranges else element.range(vdim)
if self.symmetric:
clim = -np.abs(clim).max(), np.abs(clim).max()
if self.logz:
Expand Down

0 comments on commit 454cc95

Please sign in to comment.