Skip to content
Merged
Prev Previous commit
Final bugfixes after 1dplots refactor
  • Loading branch information
lukelbd committed Jul 11, 2021
commit e18a46a8ccd1e1fc9fa92d65ae933691fe185560
9 changes: 6 additions & 3 deletions proplot/axes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1900,17 +1900,17 @@ def number(self, num):
stem = wrap._apply_wrappers(
maxes.Axes.stem,
wrap.standardize_1d,
wrap._stem_extras, # TODO check this
wrap._stem_extras,
)
vlines = wrap._apply_wrappers(
maxes.Axes.vlines,
wrap.standardize_1d,
wrap.vlines_extras, # TODO check this
wrap.vlines_extras,
)
hlines = wrap._apply_wrappers(
maxes.Axes.hlines,
wrap.standardize_1d,
wrap.hlines_extras, # TODO check this
wrap.hlines_extras,
)
scatter = wrap._apply_wrappers(
maxes.Axes.scatter,
Expand All @@ -1935,7 +1935,10 @@ def number(self, num):
)
barh = wrap._apply_wrappers(
maxes.Axes.barh,
wrap.standardize_1d,
wrap.barh_extras,
wrap.indicate_error,
wrap.apply_cycle,
)
hist = wrap._apply_wrappers(
maxes.Axes.hist,
Expand Down
Loading