Effacer les filtres
Effacer les filtres

How to set up a plot with labels but no Y-axis tick marks

1 vue (au cours des 30 derniers jours)
weijie.zhu
weijie.zhu le 30 Nov 2023
Commenté : Star Strider le 30 Nov 2023
How to set up a plot with labels but no Y-axis tick marks

Réponse acceptée

Star Strider
Star Strider le 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 commentaires
weijie.zhu
weijie.zhu le 30 Nov 2023
Thank you very much for your help. Sincere wishes!
Star Strider
Star Strider le 30 Nov 2023
As always, my pleasure!
You, too!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by