Remove fill-in color from histogram bars in MATLAB -
i have plotted histogram in matlab. bars appearing in blue default. there any remove fill-in color, , make appear white instead?
glad receive help.
you can setup facecolor
:
h = findobj(gca, 'type', 'patch'); set(h, 'facecolor', 'w')
Comments
Post a Comment