having legend title and enlarging legend marker size at the same time
4 次查看(过去 30 天)
显示 更早的评论
Initially I had a legend as like this

As you can see, the size of the legend marker is much smaller than the size of the scatter marker. However, the legend has a title. I used below code for this:
lgd=legend('25','50','75','100','Location','northwest','FontSize',30);
lgd.Title.String = 'Recoating Velocity (%)';
lgd.Title.FontSize = 30;
Then, in order to increase the marker size in the legend, I used the icons as below:
[lgd,icons,plots,legend_text] = legend('25','50','75','100', 'Location', 'Northwest')
for k = 5:8
icons(k).Children.MarkerSize = 20;
end
lgd.Title.String = 'Recoating Velocity (%)';
lgd.Title.FontSize = 30;
And the result looks like this:

Although the marker size increased, but the legend title is not applied. Why is that? How to fix it?
0 个评论
回答(1 个)
Gautam
2024-10-16
编辑:Gautam
2024-10-17
Hello @CS
It is a known problem that a title to a legend cannot be added when calling the "legend" function with multiple outputs. In fact, calling the function this way is not recommended by MathWorks since the release R2014b and will be removed in a release after R2024b.
Please refer to the "Version History" section of the below MathWorks documentation.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!