Effacer les filtres
Effacer les filtres

Bringing plots to the "front" to make them more visible?

306 vues (au cours des 30 derniers jours)
HC98
HC98 le 16 Mai 2023
Modifié(e) : Stephen23 le 16 Mai 2023
I'm plotting 2 quantities: I'm plotting a seried of values and overlaying the mean on top.
The trouble is, the mean line is underneath the main data series which makes it very hard to pickout on the plot. Is there a way to change the ordering so that it sits on top of the other data series like layers in photoshop? I tried playing with the transparency with
p2 = plot(x, data, 'k');
p2.Color(4) = 0.2;
hold on
plot(x, means)
hold off

Réponses (2)

VBBV
VBBV le 16 Mai 2023
Modifié(e) : VBBV le 16 Mai 2023
Use a marker and increase fontsize
p2 = plot(x, data, 'k');
p2.Color(4) = 0.2;
hold on
plot(x, means,'ro','MarkerSize',12,'MarkerFaceColor','r')
hold off

Stephen23
Stephen23 le 16 Mai 2023
Modifié(e) : Stephen23 le 16 Mai 2023
"s there a way to change the ordering so that it sits on top of the other data series like layers in photoshop?"
Of course, use UISTACK:
For example:
lnh = plot(2,3,'b-*'); % blue is plotted first
hold on
plot(1:3,2:4,'r-*') % and is underneath red,
uistack(lnh,'top') % but we can bring it to the front!

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by