Assign same linewidth to a grouped barplot
2 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I'm trying to assign the same linewidth to a grouped barplot, it says that i have to use the comma separated list assigment, but frankly i've never dealt with lists in matlab, and i really don't know how to do it.
v1=rand(10,1);
v2=rand(10,1);
x=[1:10];
combined=[v1,v2];
barplot=bar(x,combined,'grouped');
barplot.LineWidth=%And now i'd like to put for the 2 series the same linewidth=1
Thank you :)
0 个评论
采纳的回答
Mathieu NOE
2021-4-14
hello
v1=rand(10,1);
v2=rand(10,1);
x=[1:10];
combined=[v1,v2];
barplot=bar(x,combined,'grouped');
barplot(1).BarWidth = 1; % both bars are grouped so doing the mod on the first one will be applied on second bar too;
3 个评论
dpb
2021-4-15
The same syntax applies as shown before; just use the correct property name:
set(barplot,{'barwidth'},{1})
which will also work in cases where must set each handle of the handle array.
更多回答(1 个)
dpb
2021-4-14
编辑:dpb
2021-4-14
You can't use the "dot" notation with an array of handles, anyway; must use set here, or a looping construct of some sort.
set(barplot,{'linewidth'},{2})
NB: Must pass cell arrays even for single values to assign for multiple handles There are detailed examples of the use for more complicated cases in the documentation for set()
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series Events 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!