Skip to content

Commit 22cb9d9

Browse files
authored
Merge pull request #567 from plotly/scatterplotmatrix_print_subplots
implicitly made print_grid=False for scatterplot matrix in FF
2 parents 3deeeed + 88b4d42 commit 22cb9d9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plotly/tools.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3696,7 +3696,7 @@ def _scatterplot(dataframe, headers, diag, size,
36963696
"""
36973697
from plotly.graph_objs import graph_objs
36983698
dim = len(dataframe)
3699-
fig = make_subplots(rows=dim, cols=dim)
3699+
fig = make_subplots(rows=dim, cols=dim, print_grid=False)
37003700
trace_list = []
37013701
# Insert traces into trace_list
37023702
for listy in dataframe:
@@ -3777,7 +3777,7 @@ def _scatterplot_dict(dataframe, headers, diag, size,
37773777

37783778
theme = colormap
37793779
dim = len(dataframe)
3780-
fig = make_subplots(rows=dim, cols=dim)
3780+
fig = make_subplots(rows=dim, cols=dim, print_grid=False)
37813781
trace_list = []
37823782
legend_param = 0
37833783
# Work over all permutations of list pairs
@@ -3963,7 +3963,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
39633963
theme = colormap
39643964

39653965
dim = len(dataframe)
3966-
fig = make_subplots(rows=dim, cols=dim)
3966+
fig = make_subplots(rows=dim, cols=dim, print_grid=False)
39673967
trace_list = []
39683968
legend_param = 0
39693969
# Work over all permutations of list pairs
@@ -4137,7 +4137,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
41374137
theme = colormap
41384138

41394139
dim = len(dataframe)
4140-
fig = make_subplots(rows=dim, cols=dim)
4140+
fig = make_subplots(rows=dim, cols=dim, print_grid=False)
41414141
trace_list = []
41424142
legend_param = 0
41434143
# Work over all permutations of list pairs
@@ -4301,7 +4301,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
43014301
color.append([1./(len(theme)-1)*incr, theme[incr]])
43024302

43034303
dim = len(dataframe)
4304-
fig = make_subplots(rows=dim, cols=dim)
4304+
fig = make_subplots(rows=dim, cols=dim, print_grid=False)
43054305
trace_list = []
43064306
legend_param = 0
43074307
# Run through all permutations of list pairs

0 commit comments

Comments
 (0)