上面的标签分组条形图

时间:2016-09-07 15:33:31

标签: matlab plot bar-chart matlab-figure

问题

我正在生成条形图,并希望显示条形图上方每个条形图的高度(Ydata)。因此,对于下面的图片,我想在图表上方添加标签。我无法找到解决方案。为了您的信息,我使用的是Matlab R2016a。

enter image description here

代码

目前我正在使用以下代码创建我的图表。

   x={ '-5-0' '0-5' '5-10' '10-15' '15-20' '20-25' '25-30' '30-35' '35-40' '40-45' '45-50' '50-55'};
before= [0 27 28 18 9 6 5 3 2 1 1 0]
after= [27 28 18 9 6 5 3 2 1 1 0 0]
y=[before',after']

h=figure;
hold on
yyaxis left
l1=bar([1:12],y,'grouped');

hYLabel=ylabel('Tonnage [%]');
yyaxis right
hylabel=ylabel('Tonnage [%]');
l1(1).FaceColor = [ 0    0.447  0.7410];
l1(1).EdgeColor = [ 0    0.447  0.7410];
l1(2).FaceColor =[0.85 0.325 0.098]
l1(2).EdgeColor =[0.85 0.325 0.098]
hTitle=title('Test');
hXLabel = xlabel('Value [$/t]');
hLegend=legend([l1(1),l1(2)], 'Test1', 'Test2');
set([gca,hTitle,hXLabel,hYLabel,hLegend] , 'FontName'   , 'Helvetica','FontSize', 8) 
set(hTitle,'FontSize', 11) 
set(hLegend,'Fontsize',8,'Location', 'southoutside', 'Orientation','horizontal')
set(gca,'XTick',[1:12])
xlim([0.5 12.5])
set(gca,'xticklabel',x.')
set(gca,'LineWidth',1.0)

hold off

我在寻找什么 快速说明我在寻找什么。显然我想在每列上面贴一个标签。任何帮助都将非常感激。

enter image description here

2 个答案:

答案 0 :(得分:3)

你的行后:

l1=bar([1:12],y,'grouped');

添加以下内容:

x_shift = 0.15;
text([1:12]-x_shift,y(:,1)+1,num2str(y(:,1)),...
    'FontSize',12,'HorizontalAlignment','Center','Color',[0 0.447  0.7410])
text([1:12]+x_shift,y(:,2)+1,num2str(y(:,2)),...
    'FontSize',12,'HorizontalAlignment','Center','Color',[0.85 0.325 0.098])

你会得到:

Labeled bar

如果你想要百分比格式,还有旋转,那么x_shift需要调整一点,还需要调整y轴限制,所以我带来了完整的代码:

x={'-5-0' '0-5' '5-10' '10-15' '15-20' '20-25' '25-30' '30-35'...
    '35-40' '40-45' '45-50' '50-55'};
before= [0 27 28 18 9 6 5 3 2 1 1 0];
after= [27 28 18 9 6 5 3 2 1 1 0 0];
y=[before',after'];
ax = axes('xticklabel',x.','LineWidth',1.0,'XTick',1:12);
yyaxis(ax,'left')
l1 = bar(ax,y,'grouped');
x1_shift = -0.17;
x2_shift = 0.11;
text([1:12]+x1_shift,y(:,1)+1,[num2str(y(:,1)) repmat('%',numel(y(:,1)),1)],...
    'FontSize',12,'Rotation',90,'HorizontalAlignment','left',...
    'VerticalAlignment','middle','Color',[0 0.447  0.7410])
text([1:12]+x2_shift,y(:,2)+1,[num2str(y(:,2)) repmat('%',numel(y(:,2)),1)],...
    'FontSize',12,'Rotation',90,'HorizontalAlignment','left',...
    'VerticalAlignment','middle','Color',[0.85 0.325 0.098])
ylabel('Tonnage [%]','FontName','Helvetica','FontSize',8);
ylim([0 35])
yyaxis(ax,'right')
ylabel('Tonnage [%]','FontName','Helvetica','FontSize',8);
l1(1).FaceColor = [0 0.447  0.7410];
l1(1).EdgeColor = [0 0.447  0.7410];
l1(2).FaceColor = [0.85 0.325 0.098];
l1(2).EdgeColor = [0.85 0.325 0.098];
title('Test','FontName','Helvetica','FontSize', 11);
xlabel('Value [$/t]', 'FontName'   , 'Helvetica','FontSize', 8);
hLegend = legend([l1(1),l1(2)], 'Test1', 'Test2');
set(hLegend,'Location','southoutside','Orientation','horizontal',...
    'FontName', 'Helvetica','FontSize', 8)
xlim([0.5 12.5])
ylim([0 35])
box off

您会注意到我稍微更改了您的代码,使其更紧凑,但基本上它也是如此,并产生以下条:

 percentage format

即使您调整图表大小,此处的标签也会放置在相同位置(相对于条形图)。

答案 1 :(得分:1)

您可以使用this post中的内容 在hold off此行之前添加:
text(1 , y(1,1)+30, ['y = ', num2str(10)], 'VerticalAlignment', 'top', 'FontSize', 8)
现在您可以使用参数并将其放入for循环中以在evrey栏上添加标签。

修改
如果我理解你的话,这就是你想要的吗? 在hold off

之前添加以下内容
xt1=[1:12]-0.17;
xt2=[1:12]+0.11;
yt1=before+0.2;
yt2=after+0.2;

for i=1:12
    text(xt1(i) , yt1(i), [num2str(y(i,1)), '%'], 'rotation', 90, 'FontSize', 6, 'Color',[0 0.447  0.7410])
    text(xt2(i) , yt2(i), [num2str(y(i,2)), '%'], 'rotation', 90, 'FontSize', 6, 'Color',[0.85 0.325 0.098])
end

现在您还可以更改图形的大小,文本保持在所需的位置 结果如下所示: Bar Graph with Labels for every bar 顺便说一句,我只能访问Matlab2015,所以我无法使用你的每个功能,但代码在Matlab2016上应该没问题