How to set position of legend plot where outside axes??
조회 수: 81(최근 30일)
표시 이전 댓글
Hi all,
I create sample code for set legend position.
f = figure;
p = uipanel('Title','Panel','FontSize',12,...
'BackgroundColor','white',...
'Position',[.1 .1 .67 .8]);
% Construct a figure with subplots and data
subplot(2,1,1, 'Parent', p);
line1 = histogram(rand(1,1000));
title('Axes 1');
subplot(2,1,2, 'Parent', p);
line2 = histogram(rand(1,1000));
title('Axes 2');
% Construct a Legend with the data from the sub-plots
hL = legend([line1,line2],{'Data Axes 1','Data Axes 2'});
%set(hL,'location', 'bestoutside');
Here is result:

But, I want to move legend to outside of axes such as:

Do anyone know? Please help me.
Thank you so much
댓글 수: 0
답변(1개)
Jonas
2022년 9월 16일
add a Name-Value pair to your legend command, e.g.
legend('Location','eastoutside')
참고 항목
범주
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!