Clear Filters
Clear Filters

How to apply tranparency in some parts of figure

1 view (last 30 days)
I am try to make a figure using m_map. I want to apply transparency just in "m_gshhs_h", but I can not.
I tried these and it did not work:
a = m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k'); alpha (a, 0.5)% error
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k', 'alpha');% error
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k'); Alpha (0.5)% that all figure makes transparency
Please, does anyone have any idea how to help me?

Accepted Answer

Adam
Adam on 13 Dec 2016
'FaceAlpha', alphaVal
is the property, value pair you want for a patch. I don't know m_map, but
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k', 'FaceAlpha', 0.5)
ought to work.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!