Representing bars with different colors in matlab

1.2k Views Asked by At

i have a bar graph having three bars as follows

x=[0.22,0.34,0.42]
bar(x,0.1,'stacked')
somenames={'IND Relation' ; 'DIS Relation' ; 'EQ Relation'}
set(gca,'xticklabel',somenames)
ylabel('F1')

all the three bars are in blue color but i want to represent IND Relation with Brown color, DIS Relation with green color and EQ Relation with blue color.

following is the output, i only want to change colors in above order brown green and blue

enter image description here

1

There are 1 best solutions below

8
On BEST ANSWER

Is this what you are looking for?

x = [0.22,0.34,0.42];

h = figure;
a = axes('parent', h);
hold(a, 'on')

colors = {'r', 'b', 'g'};
somenames = {'IND Relation'; 'DIS Relation'; 'EQ Relation'}; 

for i = 1:numel(x)
    b = bar(i, x(i), 0.1, 'stacked', 'parent', a, 'facecolor', colors{i});
end

a.XTick = 1:3;
a.XTickLabel = somenames;

ylabel('F1')

enter image description here