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
These mutating methods cannot update the limits of the axes (xlims & ylims) as plots are drawn onto a fixed canvas. The limits must be set by the plotting function that creates the figure or by creating an empty `Plot`:
65
+
```julia
66
+
p =Plot(; xlim=(-1, 3), ylim=(-1, 3))
67
+
lineplot!(p, 1:2)
68
+
65
69
One can adjust the plot `height` and `width` to the current terminal size by using`height=:auto` and/or `width=:auto`.
66
70
67
71
You can reverse/flip the `Plot` axes by setting `xflip=true` and/or `yflip=true` on plot creation.
0 commit comments