We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cannot change the linewidth of a single plot but can change the linewidth of multiple plots.
using Plots plt = plot(1:5) plot(plt, lw=10) # linewidth does not change plot([plt,plt]..., lw=1) # linewidth changes
This bug occurs on ( insert x below )
x
Plots.jl version: Backend version (]st -m <backend(s)>): GR v0.72.10 Output of versioninfo():
]st -m <backend(s)>
GR v0.72.10
versioninfo()
Julia Version 1.10.0-rc1 Commit 5aaa9485436 (2023-11-03 07:44 UTC) Build Info: Official https://julialang.org/ release Platform Info: OS: Linux (x86_64-linux-gnu) CPU: 80 × Intel(R) Xeon(R) CPU E5-2698 v4 @ 2.20GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-15.0.7 (ORCJIT, broadwell) Threads: 1 on 80 virtual cores Environment: JULIA_EDITOR = code JULIA_NUM_THREADS =
The text was updated successfully, but these errors were encountered:
These two should work:
using Plots plt = plot(1:5) plot!(plt, lw=10) plot([plt,plt]..., lw=1, subplot=1 )
Sorry, something went wrong.
No branches or pull requests
Details
Cannot change the linewidth of a single plot but can change the linewidth of multiple plots.
Backends
This bug occurs on ( insert
x
below )Versions
Plots.jl version:
Backend version (
]st -m <backend(s)>
):GR v0.72.10
Output of
versioninfo()
:The text was updated successfully, but these errors were encountered: