setting transparancy of legend?

165 ビュー (過去 30 日間)
Micke Malmström
Micke Malmström 2017 年 1 月 12 日
回答済み: Afiq Azaibi 約1時間 前
Is it possible to make the background of the legend be slighly transparent so that the lines behind it can be somewat visible?
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 1 月 16 日
I will not say that it is impossible at the moment. It is certainly not documented. You just might be able to change it using one of the hidden properties of the legend. Perhaps one of the ColorSpace properties. Nothing I have tried has worked yet.

サインインしてコメントする。

採用された回答

alice
alice 2017 年 6 月 27 日
In undocumented Matlab, you will find how to do it here: http://undocumentedmatlab.com/blog/transparent-legend.
  3 件のコメント
Miquel
Miquel 2020 年 1 月 31 日
Awesome, guys! Thanks :)
Hakon Haugnes
Hakon Haugnes 2023 年 8 月 17 日
echo that: awesom

サインインしてコメントする。

その他の回答 (3 件)

Ilja Maljutenko
Ilja Maljutenko 2021 年 5 月 19 日
This solution seems to work in Matlab 2020 +
h_leg.BoxFace.ColorType='truecoloralpha';
h_leg.BoxFace.ColorData=uint8(255*[1 1 1 0.75]');
where h_leg is your legend box handle.

Wilson A N
Wilson A N 2017 年 1 月 16 日
編集済み: Walter Roberson 2017 年 1 月 16 日
You can refer to the link given below on how to set the different properties of legend
To change the background color of the legend you can change the 'Color' field to achieve the required transparency.
  3 件のコメント
James Richard
James Richard 2019 年 12 月 17 日
Any news on this?
Walter Roberson
Walter Roberson 2019 年 12 月 17 日

サインインしてコメントする。


Afiq Azaibi
Afiq Azaibi 約1時間 前
Starting in R2024a, legend supports the ability to control the level of transparency with the BackgroundAlpha property. Below is a short example:
plot(magic(7));
grid on;
set(gca, 'Color', [.88 .88 .88]);
l = legend(BackgroundAlpha=.7);
Setting the value to 0 will make it fully transparent and a value 1 of will make it fully opaque which is the default behavior.
Rectangle also has a new FaceAlpha property and you can read more about both in this blog post.

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by