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
axis
using Makie, Rasters r1 = Raster(rand(X(10), Y(10)) heatmap(r1; axis = (; title = "Your title"))
the title doesn't show up
The text was updated successfully, but these errors were encountered:
Think this is a DD issue
Sorry, something went wrong.
can confirm...even things like axis labels if set explicitly are not respected. mwe:
earth_img = rand(10, 10) earth_ras = DimArray(earth_img |> rotr90, (X(LinRange(-180, 180, size(earth_img, 2)+1)[1:end-1]), Y(LinRange(-90, 90, size(earth_img, 1)+1)[1:end-1]))) fig, ax, plt = heatmap( earth_ras; axis = (; aspect = DataAspect(), xticks = Makie.WilkinsonTicks(6; k_min = 4), yticks = Makie.WilkinsonTicks(6; k_min = 4), xlabel = "", ylabel = "", ) ) fig
asinghvi17
No branches or pull requests
the title doesn't show up
The text was updated successfully, but these errors were encountered: