How to increase marker size of the legend in scatter plot in MATLAB 2014b? [duplicate]

你。 提交于 2019-12-01 04:00:04

问题


I found marker size in the scatter plot and the legend is different in MATLAB 2014b. I searched & found some solution from earlier version of MATLAB, which are not applicable in the latest version. In my current version, the marker size in legend is so small that it is hardly distinguishable. Any help?

figure; 
hold on 
s1 = scatter(1, 1, 150, 'k', 'o') 
s2 = scatter(1, 2, 150, 'k', '+') 
s3 = scatter(2, 1, 150, 'k', 'x') 
h = legend('Circle', 'Plus', 'X', 'Location', 'NorthEast'); 
set(h, 'FontSize', 14) 
axis([0 3 0 3]) 

The marker size in the scatter and legend is different. How can I increase the marker size of legend entries & makes it similar to that of the scatter plot.


回答1:


If I understand right, you want to access the icons output of the call to legend and modify the MarkerSize property of the patch objects that are children of those icons.

Call to legend:

[h,icons,plots,legend_text] = legend('Circle', 'Plus', 'X', 'Location', 'NorthEast'); 

icons is a 6x1 graphics array like so:

icons = 

  6x1 graphics array:

  Text     (Circle)
  Text     (Plus)
  Text     (X)
  Group    (Circle)
  Group    (Plus)
  Group    (X)

What you need are the elements associated with a Group.

If you look at their properties (here icons(4)), you get:

icons(4)

 Group (Circle) with properties:

    Children: [1x1 Patch]
     Visible: 'on'
     HitTest: 'off'

  Show all properties

So there is a patch object associated with it as its child. You want to modify it using for instance

icons(Some index).Children.MarkerSize

In your case, you need to modify objects 4 to 6:

for k = 4:6
icons(k).Children.MarkerSize = 20;
end

which outputs:

you can automate this of course. I used R2015a so I expect the behavior to be the same for R2014b.

Hope this is what you meant!



来源:https://stackoverflow.com/questions/32654300/how-to-increase-marker-size-of-the-legend-in-scatter-plot-in-matlab-2014b

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!