#pythonでmatplotlibを用いてグラフ描画をする時に凡例を1行で半透明にする書き方
ax.legend()
の部分を以下のようにする。
ax.legend().get_frame().set_alpha(0.6)
久しぶりに書こうとして、忘れていたので、こちらにメモ。
Go to list of users who liked
More than 5 years have passed since last update.
#pythonでmatplotlibを用いてグラフ描画をする時に凡例を1行で半透明にする書き方
ax.legend()
の部分を以下のようにする。
ax.legend().get_frame().set_alpha(0.6)
久しぶりに書こうとして、忘れていたので、こちらにメモ。
Register as a new user and use Qiita more conveniently
Go to list of users who liked