Skip to content

Commit 4641e19

Browse files
committed
fix bar chart bug
1 parent d08aca4 commit 4641e19

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ New:
3030

3131
* Diverging colormaps divreds, divgreens, divblues.
3232

33+
Fix:
34+
35+
* Fix bug in bar chart layout.
36+
3337
Version 0.3.4
3438
-------------
3539

matthewplotlib/plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ def __init__(
845845
for i, v in enumerate(norm_values)
846846
]
847847
all_chars = CharArray.map(
848-
lambda xs: np.concatenate(xs, axis=1),
848+
lambda xs: np.concatenate(xs, axis=0),
849849
bars_chars,
850850
)
851851
super().__init__(chars=all_chars)

0 commit comments

Comments
 (0)