How do you change the transparency of multiple lines using "plot" if the lines are all different colors?
63 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Im trying to plot 15 lines in a single graph. Each line is a different color and would like all of them to be semi-transparent (alpha =0.2). Alpha does not work and when I use the 'Color' [value value value 0.2] it changes all the lines to the same color.
0 comentarios
Respuestas (1)
Les Beckham
el 28 de Sept. de 2022
Editada: Les Beckham
el 28 de Sept. de 2022
h = plot(rand(5)); % example plot. When you make your plot be sure to capture the handle
% now set the alpha on all the lines in the plot handle h
for i=1:numel(h)
c = get(h(i), 'Color');
set(h(i), 'Color', [c 0.2]);
end
grid on
3 comentarios
Les Beckham
el 4 de Mayo de 2023
Interesting. You're right, it doesn't work in a Live Script.
I would report that as a bug. Scroll down to the bottom of this page and click the "Contact Support" link under the Get Support heading.
Walter Roberson
el 4 de Mayo de 2023
the ability to add transparency to line objects is undocumented, and has some notable restrictions:
- does not work for Livescript
- transparency is not saved if you save to a .fig
- an implication of the above is that transparency of this kind is not saved if you pass graphic objects to or from parallel workers or background pools.
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!