How to change gap between legend line and legend text?

42 views (last 30 days)
How to change (horizontal) gap between legend line and legend text?

Accepted Answer

Thorsten
Thorsten on 26 Oct 2016
You can increase the space by adding blanks ' ' in front of the legend entries. This is a hack, of course.

More Answers (2)

Rani V.S
Rani V.S on 26 Oct 2016
Edited: Rani V.S on 26 Oct 2016
https://in.mathworks.com/help/matlab/ref/legend-properties.html Hope that this documentation will help you

selcuk
selcuk on 28 Jun 2020
Horizontal space commands in latex can be used:
leg1 = legend('$\bar{x}\>$','$\tilde{x}\quad$','$\hat{x}\hspace{5mm}$');
set(leg1,'Interpreter','latex');

Community Treasure Hunt

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

Start Hunting!