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
bar
permute
When using bar with the permute = (:x,:y) argument, the range of the x axis is not calculated correctly.
permute = (:x,:y)
Here, the y axis ranges in [0,1], as it should:
bar(0:0.1:1)
However, when permuting the axes, the x axis has a wider range than it should:
bar(0:0.1:1; permute = (:x,:y))
This bug occurs on ( insert x below )
x
Plots.jl version: 1.38.14 Backend version (]st -m <backend(s)>): GR v0.72.7 Output of versioninfo():
1.38.14
]st -m <backend(s)>
GR v0.72.7
versioninfo()
Julia Version 1.9.0 Commit 8e630552924 (2023-05-07 11:25 UTC) Platform Info: OS: macOS (arm64-apple-darwin22.4.0) CPU: 10 × Apple M1 Max WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-14.0.6 (ORCJIT, apple-m1) Threads: 8 on 8 virtual cores Environment: JULIA_EDITOR = code JULIA_NUM_THREADS = 8 DYLD_FALLBACK_LIBRARY_PATH = [...]
The text was updated successfully, but these errors were encountered:
orientation = :horizontal
Successfully merging a pull request may close this issue.
Details
When using
bar
with thepermute = (:x,:y)
argument, the range of the x axis is not calculated correctly.Minimal example
Here, the y axis ranges in [0,1], as it should:
However, when permuting the axes, the x axis has a wider range than it should:
Backends
This bug occurs on ( insert
x
below )Versions
Plots.jl version:
1.38.14
Backend version (
]st -m <backend(s)>
):GR v0.72.7
Output of
versioninfo()
:The text was updated successfully, but these errors were encountered: