how to adjust distance between icon legend to its label?

8 次查看(过去 30 天)
Hi, I want to decrease the distance between legend icon to its label. If somebody knows, please help. Thank you

回答(1 个)

Priyank Sharma
Priyank Sharma 2018-4-25
You can find the children of Legend object. You can search for the ones that have their Type set to text and relocate them. Below is a sample code to show how to do that. It moves them to left by 0.5 units relative to the legend box. Here 'legend' is your Legend object.
ch = get(legend, 'Children');
textCh = ch(strcmp(get(ch, 'Type'), 'text'));
for i = 1:numel(textCh)
set(textCh(i), 'Position', get(textCh(i), 'Position') + [-0.5 0 0])
end
  1 个评论
Amra Rajuli
Amra Rajuli 2018-4-26
Thank you for your answer. I have tried, but it won't change. any idea? or maybe my step is wrong?

请先登录,再进行评论。

类别

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