Skip to content

Commit 325a2db

Browse files
authored
Merge pull request #632 from plotly/fix-scatterplotmatrix-labels
fix-remove-scatterplot-labels
2 parents 7907ec4 + 9427a5b commit 325a2db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4573,7 +4573,7 @@ def _hide_tick_labels_from_box_subplots(fig):
45734573
# stores the xaxes which correspond to boxplot subplots
45744574
# since we use xaxis1, xaxis2, etc, in plotly.py
45754575
boxplot_xaxes.append(
4576-
'xaxis{}'.format(trace['xaxis'][-1])
4576+
'xaxis{}'.format(trace['xaxis'][1:])
45774577
)
45784578
for xaxis in boxplot_xaxes:
45794579
fig['layout'][xaxis]['showticklabels'] = False

0 commit comments

Comments
 (0)