有没有一个选项可以改变Matlab创建的图例中的符号大小?我只想增加图例中的符号大小。我已经使用了4个每个3点的Scatters。
现在,传说中的元素组织已经不同了。以下工作。
plot(1:10, 'o-');
hold on
plot(5:12, 'r*--'); %// example plots
[~, objh] = legend({'one plot', 'another plot'}, 'location', 'NorthWest', 'Fontsize', 14);
%// set font size as desired
objhl = findobj(objh, 'type', 'line'); %// objects of legend of type line
set(objhl, 'Markersize', 12); %// set marker size as desired
至 加大字体获取所有类型的传说的子代的句柄。'text'
,并设定其 'Fontsize'
属性为所需值。
要 扩标获取所有类型的传说的子代的句柄。'line'
,并设定其 'Markersize'
属性为所需的值。
plot(1:10, 'o-');
hold on
plot(5:12, 'r*--'); %// example plots
h = legend('one plot', 'another plot', 'location', 'NorthWest'); %// example legend
ch = findobj(get(h,'children'), 'type', 'text'); %// children of legend of type text
set(ch, 'Fontsize', 14); %// set value as desired
ch = findobj(get(h,'children'), 'type', 'line'); %// children of legend of type line
set(ch, 'Markersize', 12); %// set value as desired
如果有人和我一样,来到这里寻找改变散点图的图例标记大小的方法:而不是像线图那样的 "线 "类型的对象,你需要 "补丁 "类型的对象(2017b)。
objhl = findobj(objh, 'type', 'patch'); % objects of legend of type patch
set(objhl, 'Markersize', 12); % set marker size as desired
在我的案例中,我需要在MATLAB R2019b中绘制一个多列图例(使用 "NumCloumns "属性),并且我需要改变图例中的标记大小。遗憾的是,这两个要求不能同时满足。MATLAB会忽略 "NumColumns "参数,在你从图例函数中得到两个返回。
我最终在轴线限制外绘制一些与实验数据颜色相同的非常大的点,并显示它们的图例。这很好用,虽然它是一个肮脏的解决方案。