We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lw
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ax.hist ignores lw argument. Must use linewidth in order to change the thickness of the lines.
ax.hist
linewidth
# Test of lw vs linewidth in histograms histogram1 = [1] histogram2 = [3] histogram3 = [5] fig, ax = plt.subplots(figsize=(8, 8)) ax.hist(histogram1, bins=1, density=True, histtype='step', color='tab:blue', lw=1, label='lw=1') ax.hist(histogram2, bins=1, density=True, histtype='step', color='tab:orange', lw=3, label='lw=3') ax.hist(histogram3, bins=1, density=True, histtype='step', color='tab:green', linewidth=3, label='linewidth=3') ax.legend() plt.show() print(matplotlib.__version__)
Using lw and linewidth produce same output.
This was not a problem with an earlier version of Matplotlib (don't remember the version unfortunately, but definitely 3.x something).
Ubuntu 24.04.2 LTS
3.10.0
agg
3.12.3
4.2.5
pip
The text was updated successfully, but these errors were encountered:
Thanks @gullbrekken for the report. This has already been fixed ready for the next release by #29552.
Sorry, something went wrong.
No branches or pull requests
Bug summary
ax.hist
ignoreslw
argument. Must uselinewidth
in order to change the thickness of the lines.Code for reproduction
Actual outcome
Expected outcome
Using
lw
andlinewidth
produce same output.Additional information
This was not a problem with an earlier version of Matplotlib (don't remember the version unfortunately, but definitely 3.x something).
Operating system
Ubuntu 24.04.2 LTS
Matplotlib Version
3.10.0
Matplotlib Backend
agg
Python version
3.12.3
Jupyter version
4.2.5
Installation
pip
The text was updated successfully, but these errors were encountered: