How to make marker size bigger in legend for scatter plot?

84 次查看(过去 30 天)
How to make marker size bigger in legend for scatter plot?
I want the marker size in legend same as in scatter plot. But by default the legend markers are too small.
Attching the figure for the refernce.

回答(1 个)

Walter Roberson
Walter Roberson 2023-4-8
In order to do this, you might need to use the undocumented second output of legend(). When you call legend() with multiple outputs, then legend() changes how it works internally, going back to an older representation. The second output becomes graphic handles that you can manipulate independently of the markers on the main plot.
  2 个评论
Mahdi Nobar
Mahdi Nobar 2023-9-10
but there is no graphics of type line to change the marker size!! please clarify more it does not work.
Walter Roberson
Walter Roberson 2023-9-10
h = plot(1:5, 2:6, 'k*-', 1:5, 6:-1:2, 'r.')
h =
2×1 Line array: Line Line
[out1, out2] = legend({'first', 'second'})
out1 =
Legend (first, second) with properties: String: {'first' 'second'} Location: 'northeast' Orientation: 'vertical' FontSize: 9 Position: [0.7171 0.8210 0.1685 0.0797] Units: 'normalized' Show all properties
out2 =
6×1 graphics array: Text (first) Text (second) Line (first) Line (first) Line (second) Line (second)
h(1).MarkerSize = 10; %first line
%second output of legend has
%* one text() entry per handle
%* followed by pairs with
% * one line() per line() handle to draw the sample line
% * one line() per line() handle to draw the sample marker
offset_to_lines = length(h); %one text per handle
offset_to_legend_line = 1;
offset_to_legend_marker = 2;
line_index_to_change = 1;
idx = offset_to_lines + (line_index_to_change - 1) * 2 + offset_to_legend_marker
idx = 4
out2(idx).MarkerSize = 15;
You can see here that although the marker size for the first line is set to 10, that the marker size in the legend has been set to 15.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by