🎨
Plots.jlで凡例のデザインを変更する
Plots.jlの簡単なサンプルは上記の記事にまとめてあるので併せて参考にしてください。この記事では凡例のデザインをいじっていきます。
plot(sin, label="label")
凡例の背景色
plot(sin, label="label", background_color_legend = :red)
plot(sin, label="label", background_color_legend = "#FF0000")
plot(sin, label="label", background_color_legend = nothing)
凡例の枠線
plot(sin, label="label", foreground_color_legend = :red)
plot(sin, label="label", foreground_color_legend = "#FF0000")
plot(sin, label="label", foreground_color_legend = nothing)
凡例の位置
こちらの記事が参考になります。
plot(sin, label="label", legend = :bottomleft)
その他
文字の色やサイズ、凡例のタイトルや角度などが変更できるようです。
Discussion