You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code does not give the desired output
using CairoMakie
Fig = Figure()
ax1 = Axis(Fig[1, 1], title = "Axis 1")
ax2 = Axis(Fig[1, 2], title = "Axis 2")
hidedecorations!(ax1, grid = false)
hidexdecorations!(ax2, grid = false)
Fig
I expect this to give me two axis side by side with no grids, but both grids appear. If by the contrary one of the grids is set to true, then only one grid appears and the other one is hidden.
The text was updated successfully, but these errors were encountered:
The following code does not give the desired output
I expect this to give me two axis side by side with no grids, but both grids appear. If by the contrary one of the grids is set to true, then only one grid appears and the other one is hidden.
The text was updated successfully, but these errors were encountered: