Skip to content

Commit f6cc8b9

Browse files
committed
Fix issue where boxpctile is ignored (fixes #382)
1 parent feb1a9b commit f6cc8b9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

WHATSNEW.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,10 @@ Bug fixes
223223
on gridspecs without companion `~proplot.figure.Figure`\ s (:commit:`e69fd041`).
224224
* Fix issues passing pandas datetime coordinates and object-type coordinate
225225
arrays to plotting methods (:issue:`320`).
226+
* Fix issue where hatching passed to `~proplot.axes.Axes.bar` does nothing unless
227+
`edgecolor` is explicitly passed (:issue:`389`).
228+
* Fix issue where `boxpctiles` is not recognized by e.g. `~proplot.axes.PlotAxes.bar`
229+
but `boxpctile` is due to typo (:issue:`382`).
226230
* Fix issue where list-of-string colors passed to `~proplot.axes.Axes.scatter`
227231
are interpreted as data values (:issue:`316`).
228232
* Fix issue where *x* and *y* axis limits are reversed when passing to

proplot/axes/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ def _add_error_bars(
14791479
): # ugly kludge to check for shading
14801480
if all(_ is None for _ in (bardata, barstds, barpctiles)):
14811481
barstds, barpctiles = default_barstds, default_barpctiles
1482-
if all(_ is None for _ in (boxdata, boxstds, boxpctile)):
1482+
if all(_ is None for _ in (boxdata, boxstds, boxpctiles)):
14831483
boxstds, boxpctiles = default_boxstds, default_boxpctiles
14841484
showbars = any(
14851485
_ is not None and _ is not False for _ in (barstds, barpctiles, bardata)

0 commit comments

Comments
 (0)