How to make longer and thicker ticks in the colorbar?

11 visualizaciones (últimos 30 días)
Sim
Sim el 4 de Mayo de 2021
Comentada: Sim el 4 de Mayo de 2021
How to make longer and thicker ticks in the colorbar?

Respuesta aceptada

Scott MacKenzie
Scott MacKenzie el 4 de Mayo de 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 comentario
Sim
Sim el 4 de Mayo de 2021
thanks a lot! Exactly those two - I did not find them in the matlab docuemntation..

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by