在Matlab中获取完整大小的colorbar

时间:2017-03-09 10:19:27

标签: matlab plot position matlab-figure colorbar

我正在为Matlab编写一个绘图自动化程序。 但是,我有问题来评估色条的(水平)尺寸。 我可以使用以下内容来获取颜色条的大小:

cb = findall(groot,'Type','colorbar'); % get colorbar
xwidth = cb.Position(3);

这将为我提供颜色条的水平尺寸,但不包括标签和刻度标签。

您是否知道如何获得条形图和标签的完整尺寸?

提前致谢

2 个答案:

答案 0 :(得分:1)

在R2014b之前的MATLAB版本中,颜色条只是伪装的axes对象,因此您可以轻松使用颜色条的OuterPosition属性来获取颜色条的位置(包括标签和刻度标签)。但是,在R2014b中,颜色条是它自己的图形对象,并且不再可以访问基础轴。

一种可能的解决方法是在颜色栏顶部创建一个不可见的axes对象(具有相同的刻度线和标签),然后获取OuterPosition

function pos = getColorbarPosition(cb)

    tmp = axes('Position', cb.Position, 'YAxisLocation', 'right', ...
            'YLim', cb.Limits, 'FontSize', cb.FontSize, 'Units', cb.Units, ...
            'FontWeight', cb.FontWeight, 'Visible', 'off', ...
            'FontName', cb.FontName, 'YTick', cb.Ticks, ...
            'YTickLabels', cb.TickLabels, 'XTick', []);

    if ~isempty(cb.Label)
        ylabel(tmp, cb.Label.String, 'FontSize', cb.Label.FontSize, ...
        'FontWeight', cb.Label.FontWeight, 'FontWeight', cb.Label.FontWeight)
    end

    pos = get(tmp, 'OuterPosition');

    delete(tmp);
end

答案 1 :(得分:0)

在matlab2017中,颜色栏对象具有两个重要的大小属性,即“位置”和“ Label.Extent”

cax = colorbar;
cax.Units = 'centimeters'; % I think this sets the units for the child
cax.Label.String = 'A title'; 
% The position of the bar itself as [ left bottom width height ]
cpos = cax1.Position; 
% The position of the label as [ left bottom width height ]
lpos = cax.Label.Extent;
% The width of the colorbar and label is:
totalwidth = cpos(3) + lpos(3)