How does I bring the line plot in front of the bar?
139 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kwanghun Choi
am 25 Feb. 2019
Bearbeitet: Adam Danz
am 5 Dez. 2021
I am makeing the graph to illustrate some information with plot function and bar function.
Problem is the line made by plot function is always back of the bar, so some part of line is hided like a image below.
It is possible to control the size of axis to make not to be overlaped, but I do not want to do that.
How can I bring the line in front of the bar?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/205688/image.png)
0 Kommentare
Akzeptierte Antwort
Kevin Phung
am 25 Feb. 2019
Use uistack();
a = plot(x,y) %let a be the handle to plot 1
b= plot(x2,y2) %let b be the handle to plot 2
uistack(a,'top') %you can also do uistack(b,'bottom')
1 Kommentar
Weitere Antworten (1)
Jakub Schneider
am 25 Nov. 2020
When using multiple y axis plot (yyaxis left and yyaxis right) the yyaxis right plot is on the top. So just switch left to right and the line will be over the bars.
1 Kommentar
Jakob Weis
am 8 Jun. 2021
When using two y-axes, simply switching the data/axes is rarely an option. The primary dataset has to go on the primary/left axis and the secondary dataset on the secondary right/axis.
Here's a workaround for this case: https://www.mathworks.com/matlabcentral/answers/280015-draw-stack-order-for-yyaxis
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!