Skip to content

Commit d39a0be

Browse files
committed
make print_grid=True the default for make_subplots
1 parent 9c34d84 commit d39a0be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plotly/tools.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def get_subplots(rows=1, columns=1, print_grid=False, **kwargs):
493493

494494
def make_subplots(rows=1, cols=1,
495495
shared_xaxes=False, shared_yaxes=False,
496-
start_cell='top-left', print_grid=False,
496+
start_cell='top-left', print_grid=True,
497497
**kwargs):
498498
"""Return an instance of plotly.graph_objs.Figure
499499
with the subplots domain set in 'layout'.
@@ -575,7 +575,7 @@ def make_subplots(rows=1, cols=1,
575575
Choose the starting cell in the subplot grid used to set the
576576
domains of the subplots.
577577
578-
print_grid (kwarg, boolean, default=False):
578+
print_grid (kwarg, boolean, default=True):
579579
If True, prints a tab-delimited string representation of
580580
your plot grid.
581581

0 commit comments

Comments
 (0)