File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments