Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e18a46a

Browse files
committed
Final bugfixes after 1dplots refactor
1 parent 2ebb682 commit e18a46a

File tree

2 files changed

+280
-207
lines changed

2 files changed

+280
-207
lines changed

‎proplot/axes/base.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1900,17 +1900,17 @@ def number(self, num):
19001900
stem = wrap._apply_wrappers(
19011901
maxes.Axes.stem,
19021902
wrap.standardize_1d,
1903-
wrap._stem_extras, # TODO check this
1903+
wrap._stem_extras,
19041904
)
19051905
vlines = wrap._apply_wrappers(
19061906
maxes.Axes.vlines,
19071907
wrap.standardize_1d,
1908-
wrap.vlines_extras, # TODO check this
1908+
wrap.vlines_extras,
19091909
)
19101910
hlines = wrap._apply_wrappers(
19111911
maxes.Axes.hlines,
19121912
wrap.standardize_1d,
1913-
wrap.hlines_extras, # TODO check this
1913+
wrap.hlines_extras,
19141914
)
19151915
scatter = wrap._apply_wrappers(
19161916
maxes.Axes.scatter,
@@ -1935,7 +1935,10 @@ def number(self, num):
19351935
)
19361936
barh = wrap._apply_wrappers(
19371937
maxes.Axes.barh,
1938+
wrap.standardize_1d,
19381939
wrap.barh_extras,
1940+
wrap.indicate_error,
1941+
wrap.apply_cycle,
19391942
)
19401943
hist = wrap._apply_wrappers(
19411944
maxes.Axes.hist,

0 commit comments

Comments
 (0)