I do want do change the ticks and the label of the colorbar. I use
figure;
set(gca,'FontSize', 14);
and this does change the font size for all the normal axes, the ticks
and the legend but not the colorbar.
Can you please help me?
TIA Martin
figure;
h=colorbar;
set(h,'fontsize',14);
gca is the handle for the axes, you have to specify another handle if you want to change properties of other stuff!