How to set up a plot with labels but no Y-axis tick marks
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
weijie.zhu
am 30 Nov. 2023
Kommentiert: Star Strider
am 30 Nov. 2023
How to set up a plot with labels but no Y-axis tick marks
0 Kommentare
Akzeptierte Antwort
Star Strider
am 30 Nov. 2023
Perhaps this —
figure
boxchart(rand(10))
yt = yticks;
yline(yticks, '-k', 'Color',[1 1 1]*0.25)
Ax = gca;
Ax.YAxis.Visible = 0;
text(zeros(size(yt))-0.01*diff(double(xlim)), yt, compose('%g',yt), 'Horiz','right', 'Vert','middle')
.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Axis Labels 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!