We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
yscale = log10
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
using CairoMakie fig = Figure() ax = Axis( fig[1,1], yscale = log10, ) barplot!(ax, (rand(10)*100).+100) ylims!(ax, low = 1E1); fig
The text was updated successfully, but these errors were encountered:
The fix for this is in #4911, but for now you can set fillto = your_low_ylim as a kwarg to barplot.
fillto = your_low_ylim
julia> bp = ax.scene.plots[end] Plot{barplot, Tuple{Vector{Point{2, Float64}}}} julia> bp.fillto[] = 1e1 10.0 julia> fig
Sorry, something went wrong.
Thanks @asinghvi17 ... looks like this is a duplicate issue.. closing
No branches or pull requests
The text was updated successfully, but these errors were encountered: