Taiko Green
Taiko Green

Reputation: 67

Matlab Axislabel reaches partly in image

the second scale of my colorbar reaches partly in the image, is there a quick way to fix that? enter image description here

Upvotes: 1

Views: 22

Answers (1)

Ander Biguri
Ander Biguri

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

Related Questions