How to make longer and thicker ticks in the colorbar?

11 vues (au cours des 30 derniers jours)
Sim
Sim le 4 Mai 2021
Commenté : Sim le 4 Mai 2021
How to make longer and thicker ticks in the colorbar?

Réponse acceptée

Scott MacKenzie
Scott MacKenzie le 4 Mai 2021
Not sure the purpose, but this looks like what you're asking for...
y = randi(10,1,5);
tiledlayout('flow');
nexttile;
bar(y);
colorbar;
nexttile;
bar(y);
h = colorbar;
h.TickLength = .05; % default is 0.01
h.LineWidth = 1; % default is 0.5
  1 commentaire
Sim
Sim le 4 Mai 2021
thanks a lot! Exactly those two - I did not find them in the matlab docuemntation..

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by