How can I display axis ticks when using fill syntax?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Navid
am 15 Nov. 2023
Kommentiert: Star Strider
am 16 Nov. 2023
Based on Figure 1, the axis ticks (bottom horizontal and right vertical) are hidden when using the fill syntax for my plot. Could you please help me display them again?
Figure 1:

0 Kommentare
Akzeptierte Antwort
Star Strider
am 16 Nov. 2023
Bearbeitet: Star Strider
am 16 Nov. 2023
The easiest way is to bring the ticks to the top layer —
x = linspace(0, 1).';
y = x;
figure
fill([x; flip(x)], [zeros(size(y)); flip(y)], 'g')
Ax = gca;
Ax.Layer = 'top';
Ax.Box = 'on';
Another option is to adjust the transparency ('FaceAlpha' value) of the patch.
.
EDIT — (16 Nov 2023 at 02:04)
Corrected typgraphical error.
.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!