Scatter chart: How to adjust the transparency of marker?

조회 수: 195 (최근 30일)
wesleynotwise
wesleynotwise 2017년 6월 16일
댓글: Adam Danz 2020년 8월 4일
Wondering how to change the transparency of marker from plot tools? At the moment, I can only adjust the line thickness and line colour of the marker, and the size and face colour of the marker. Where to find the transparency scale of the colour, like in Excel, where one can just simply adjust it?

답변 (2개)

Sachindra Dhanapala Arachchige
Sachindra Dhanapala Arachchige 2018년 5월 16일
to fill the markers just add f1 = scatter(.....,'filled',....) then try f1.MarkerFaceAlpha = 0.2; should work.

MathReallyWorks
MathReallyWorks 2017년 6월 16일
Hello,
Use this code:
ax = axes;
hold on;
for i = 1:10
s = scatter(10*rand(1),10*rand(1),36,rand(1,3),'filled'); %This is random data. You can use yours.
s.MarkerFaceAlpha = rand(1); %%marking every maker with different alpha value
end
  댓글 수: 2
wesleynotwise
wesleynotwise 2017년 6월 16일
편집: wesleynotwise 2017년 6월 17일
Hello. Hello. It does not work in my case?
f1 = gscatter(x, y, GroupCountry, 'mgbr', 'oooo')
f1.MarkerFaceAlpha = 0.2;
I know my marker is a hollow circle 'o', how to turn it into a filled circle? I am not using '.' as I want the edge of marker to be black, and the filled colour is semi-transparent.
I am giving the above example where I have 4 groups of data, another plot of mine contains 12 groups (crazy!), which I plan to use different shades of red, blue, green, etc to identify them, but I still want them in semi-transparent.
Any thoughts?
Adam Danz
Adam Danz 2020년 8월 4일
To set transparency with gscatter, see this answer.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by