Reputation: 67
the second scale of my colorbar reaches partly in the image, is there a quick way to fix that?
Upvotes: 1
Views: 22
Reputation: 35525
c=colobar;
pos=get(c,'Position');
set(c,'Position',pos+[0.05 0 0 0])
Get the colorbar position, add a bit offset to the x
.
Upvotes: 1