Borrar filtros
Borrar filtros

What property of a line is related to the transparency / opacity or alpha of a line?

4 visualizaciones (últimos 30 días)
when i plot a line with transparency by means of rgba color triplet and opacity.
hline = plot(x,y,'color',[1,0,0,0.5])
What property of the resulting handle is changed? I cannot find anything in the color triplet, nor can i find a seperate property like 'Alpha' or 'FaceAlpha' or anything similar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 14 de Oct. de 2020
Editada: Ameer Hamza el 14 de Oct. de 2020
You can access the alpha value using this line
alpha_val = hline.Edge.get.ColorData(4)
It is in uint8, you can convert to double
alpha_val = double(hline.Edge.get.ColorData(4))/255

Más respuestas (0)

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!

Translated by