How to make marker size bigger in legend for scatter plot?
조회 수: 83 (최근 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.
댓글 수: 0
답변 (1개)
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
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
2023년 9월 10일
h = plot(1:5, 2:6, 'k*-', 1:5, 6:-1:2, 'r.')
[out1, out2] = legend({'first', '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
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 Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!