MATLAB: Median line representation in boxplot

boxplotfiguresimage analysisimage processingplot

I converted the boxplot color to black. So i want to distinguish median with different pattern. I tried giving notch option to boxplot. But that does not look nice. Is there any way to represent median in dotted lines?? or any other nice representation???

Best Answer

Can you please show an example, because the color of the median line defaults to red. So I don't think I understand what you're saying. At any rate, you can modify that line like this:
load carsmall;
boxplot(MPG)
h = findobj(gca,'tag','Median');
set(h,'linestyle','-.');
set(h,'Color',[0 0 0])