Is it possible to reduce the alpha for markers in a simple plot?

8 vues (au cours des 30 derniers jours)
Wolfgang McCormack
Wolfgang McCormack le 12 Mar 2021
Commenté : ANKUR KUMAR le 15 Mar 2021
Hi all,
I am having a simple plot like
plot(X,Y, 'MarkerFaceColor','#0072BD')
Is it possible to reduce the transparency of MarkerFaceColor to 0.5?
Thanks in advance

Réponse acceptée

ANKUR KUMAR
ANKUR KUMAR le 12 Mar 2021
Modifié(e) : ANKUR KUMAR le 12 Mar 2021
Plot function doesn't have support to tune transparency. You can use scatter to do that
scat = scatter(x,y,'MarkerFaceColor','b','MarkerEdgeColor','r');
scat.MarkerFaceAlpha = .5;
scat.MarkerEdgeAlpha = .5;
You can manipulate the color values, if you wish to use plot function.
hand = plot(X,Y,'r');
hand.LineWidth = 2;
hand.Color(4)=0.2; % this would act as your alpha value or transparency factor.
  2 commentaires
Wolfgang McCormack
Wolfgang McCormack le 13 Mar 2021
@ANKUR KUMAR why is the index 4? I never get indexing in plots :D
ANKUR KUMAR
ANKUR KUMAR le 15 Mar 2021
First three indices are for RGB color, and the fourth index is the transparency.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Lighting, Transparency, and Shading dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by