Hi, I am using CairoMakie
for plotting in Julia. I am wondering if there is any way to get thick borders in my figure? Something like this:
Thank you!
Hi, I am using CairoMakie
for plotting in Julia. I am wondering if there is any way to get thick borders in my figure? Something like this:
Thank you!
You can type ?Axis
in Julia REPL and you can find all available attributes of Axis
. For your question, Axis(fig[1, 1] ;spinewidth=10)
Thank you!