plot lines and stems behind the markers?

 Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 21 Okt. 2020

0 Stimmen

You can use uistack(). For example, consider this code
x = 1:10;
y = rand(1,10);
hold on
s = scatter(x, y, 'filled', 'SizeData', 100);
p = plot(x, y, 'LineWidth', 2);
the line will be over the scatter points. You can bring the scatter point on top using
uistack(s, 'top')

3 Kommentare

Thanks a lot, in my specific case your solution works if I put both commands:
uistack(markers, 'top')
uistack(lines, 'bottom')
However, How can I do the same for a stem plot (stem lines and corresponding markers in the bottom half of this plot)?
You can also get the handle of stem object and arrange it using uistack
s = stem(..)
Sim
Sim am 21 Okt. 2020
thanks a lot!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

Sim
am 21 Okt. 2020

Kommentiert:

Sim
am 21 Okt. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by