How can I use tabs in legend text?

조회 수: 29 (최근 30일)
KAE
KAE 2017년 8월 18일
답변: KAE 2017년 8월 18일
I would like to use tabs in the text of a legend, but can't figure out how. I tried doing using sprintf (below), but the tabs aren't displayed. Is this because a legend is a listbox which apparently can't display tabs, and the only workaround is to use spaces instead? I am using R2015b.
figure;
x = 1:0.1:10;
y1 = sin(x*pi); % First variable to plot
y2 = cos(x*pi); % Second variable to plot
h1 = plot(x, y1, x, y2);
legendStr{1} = sprintf('First\t%4.2f',rand(1)); % First legend entry with tab
legendStr{2} = sprintf('Second\t%4.2f',rand(1)); % Second legend entry with tab
disp(legendStr) % Display the string to show it contains tabs as expected
legend(h1, legendStr, 'FontName', 'FixedWidth'); % But no tab appears in legend

채택된 답변

KAE
KAE 2017년 8월 18일
I was able to use detab as a workaround, but is there a more direct way?
legend(h1, detab(legendStr), 'FontName', 'FixedWidth'); % Now tab appears in legend

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by