@@ -3696,7 +3696,7 @@ def _scatterplot(dataframe, headers, diag, size,
3696
3696
"""
3697
3697
from plotly .graph_objs import graph_objs
3698
3698
dim = len (dataframe )
3699
- fig = make_subplots (rows = dim , cols = dim )
3699
+ fig = make_subplots (rows = dim , cols = dim , print_grid = False )
3700
3700
trace_list = []
3701
3701
# Insert traces into trace_list
3702
3702
for listy in dataframe :
@@ -3777,7 +3777,7 @@ def _scatterplot_dict(dataframe, headers, diag, size,
3777
3777
3778
3778
theme = colormap
3779
3779
dim = len (dataframe )
3780
- fig = make_subplots (rows = dim , cols = dim )
3780
+ fig = make_subplots (rows = dim , cols = dim , print_grid = False )
3781
3781
trace_list = []
3782
3782
legend_param = 0
3783
3783
# Work over all permutations of list pairs
@@ -3963,7 +3963,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
3963
3963
theme = colormap
3964
3964
3965
3965
dim = len (dataframe )
3966
- fig = make_subplots (rows = dim , cols = dim )
3966
+ fig = make_subplots (rows = dim , cols = dim , print_grid = False )
3967
3967
trace_list = []
3968
3968
legend_param = 0
3969
3969
# Work over all permutations of list pairs
@@ -4137,7 +4137,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
4137
4137
theme = colormap
4138
4138
4139
4139
dim = len (dataframe )
4140
- fig = make_subplots (rows = dim , cols = dim )
4140
+ fig = make_subplots (rows = dim , cols = dim , print_grid = False )
4141
4141
trace_list = []
4142
4142
legend_param = 0
4143
4143
# Work over all permutations of list pairs
@@ -4301,7 +4301,7 @@ def _scatterplot_theme(dataframe, headers, diag, size, height,
4301
4301
color .append ([1. / (len (theme )- 1 )* incr , theme [incr ]])
4302
4302
4303
4303
dim = len (dataframe )
4304
- fig = make_subplots (rows = dim , cols = dim )
4304
+ fig = make_subplots (rows = dim , cols = dim , print_grid = False )
4305
4305
trace_list = []
4306
4306
legend_param = 0
4307
4307
# Run through all permutations of list pairs
0 commit comments