Skip to content

Commit

Permalink
Enabled fix_aspect by default
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Aug 21, 2016
1 parent f618ecc commit d585a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/plotting/mpl/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ class LayoutPlot(GenericLayoutPlot, CompositePlot):
(left, bottom, right, top), defining the size of the border
around the subplots.""")

fix_aspect = param.Boolean(default=False, doc="""Apply a fix to the
fix_aspect = param.Boolean(default=True, doc="""Apply a fix to the
figure aspect to take into account non-square plots (will be the
default in future versions""")

Expand All @@ -713,7 +713,7 @@ class LayoutPlot(GenericLayoutPlot, CompositePlot):
Specifies the space between horizontally adjacent elements in the grid.
Default value is set conservatively to avoid overlap of subplots.""")

vspace = param.Number(default=0.1, doc="""
vspace = param.Number(default=0.25, doc="""
Specifies the space between vertically adjacent elements in the grid.
Default value is set conservatively to avoid overlap of subplots.""")

Expand Down

0 comments on commit d585a2e

Please sign in to comment.