MATLAB: How to remove outlier form boxchart graph

boxchartboxplotcolor

data = xlsread('data.xlsx');
x = 1:36;
figure();
ax = axes();
hold(ax);
for i=1:36
fig = boxchart(x(i)*ones(size(data(:,i))), data(:,i));
fig.BoxFaceColor = color(i,:);
end
I've got this boxchart with outlier show on them how can I hide them. I tried 'symbol' ' ' but it didn't work with boxchart it works with boxplot.
Or is there any way I can add different color to different box using this command.
boxplot(data(:,:),'symbol' ,' ' )

Best Answer

You can set the MarkerStyle property to 'none' to hide the markers.
data=rand(100,2);data(end,:)=2;
boxchart(data,'MarkerStyle','none')