diff --git a/rwth_nb/plots/mpl_decorations.py b/rwth_nb/plots/mpl_decorations.py index 193f60fba2a6dcee7548d9413031ba6aec38b006..a8a01554621f6926147387f6b733ef032fc199ba 100644 --- a/rwth_nb/plots/mpl_decorations.py +++ b/rwth_nb/plots/mpl_decorations.py @@ -333,7 +333,7 @@ mcolors.get_named_colors_mapping().update(colors.rwth_colors) # Custom stem function def stem(ax, x, y, color='rwth:blue', **kwargs): - container = ax.stem(x, y, use_line_collection=True, basefmt=" ", **kwargs) + container = ax.stem(x, y, basefmt=" ", **kwargs) plt.setp(container, 'color', color) return container