We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29bc955 commit acb1cecCopy full SHA for acb1cec
proplot/figure.py
@@ -1193,6 +1193,8 @@ def _align_axis_label(self, x):
1193
axs = ax._get_span_axes(pos, panels=False) # returns panel or main axes
1194
if any(getattr(ax, '_share' + x) for ax in axs):
1195
continue # nothing to align or axes have parents
1196
+ _ref_label_text = getattr(ax, x + 'axis').label.get_text()
1197
+ axs = list(_ax for _ax in axs if getattr(_ax, x + 'axis').label.get_text() == _ref_label_text)
1198
seen.update(axs)
1199
if span or align:
1200
if hasattr(self, '_align_label_groups'):
0 commit comments