How do I find out how much space a color bar takes up using Matlab R2014b? I need to know the total size including all labels, but if I do
c = colorbar;
get(c,'TightInset');
I get the error message
Error using matlab.graphics.illustration.ColorBar/get
There is no TightInset property on the ColorBar class.
The same holds for OuterPosition. Apparently, these properties are no longer supported for the ColorBar class in R2014b.