Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 88b4d42

Browse filesBrowse files
committed
implicitly made print_grid=False for scatterplot matrix in FF
1 parent 3deeeed commit 88b4d42
Copy full SHA for 88b4d42

File tree

1 file changed

+5
-5
lines changed
Filter options

1 file changed

+5
-5
lines changed

‎plotly/tools.py

Copy file name to clipboardExpand all lines: plotly/tools.py
+5-5Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.