How to increase the space between the title of each graph and the graph in a tiled layout?
9 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
How can I increase the space between the title of each graph and the graph itself in a tiled layout?
StackBar = tiledlayout(2,3);
nexttile
ArbeitAnnual = bar(ArbeiterData(:,1:5:30)'.*277.78,'stacked')
title('Arbeiter/in','Position',30)
set(gca,'xtick',1:6,...
'xticklabel',{'Arbeit1','Arbeit2','Arbeit3','Arbeit4','Arbeit5', 'Arbeit6'})
ylabel('Arbeiten (Total)')
ylim([0 370000000])
....
Also, is it possible to place the legend for all graphs in the sixth position in the above code?
Also, I appreciate it if you could teach me to show the percentage of each stack on it and the total value on the top. Thanks
0 件のコメント
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!