Change opacity of Lines
Show older comments
Hello everyone
I want to change the opacity of lines I plotted in a figure in MATLAB. I read somewhere about alpha and facealpha commands but couldn't figure how to use them. Could somoene please tell me how to do this?
Regards Adi
Accepted Answer
More Answers (1)
Royi Avital
on 29 Sep 2017
7 votes
In newer versions of MATLAB you can do that easily using the Color property of the line.
By default it is RGB array (1 x 3). Yet if you set it to RGBA (1 x 4) the last value is the alpha of the color.
Enjoy...
6 Comments
Erik Jäverbrink
on 1 Dec 2020
This was an excellent solution!
Garvit Amipara
on 15 Apr 2021
Spent half an hour to find a solution, here it is. Thank you!
Murphy Liu
on 7 Jul 2021
Thank you!! I spent hours on this problem
goc3
on 17 Sep 2021
This question should be updated to have this as the selected answer!
Greta Koumarianou
on 7 Oct 2021
this does not work on 2021a. bit of an embarassment for matlab
Soheil
on 4 May 2022
The following works in R2021b (64-bit, Windows). The last value changes the transparency:
'Color',[0 0.4470 0.7410 0.1]);

Categories
Find more on Graphics Performance in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!