X = [10 17 3 25 31 20 11 13 14];
myC = [1 0 0; 0 1 0; 1 0 1; 0 0 1; 0.5 0 0.5; 1 0.5 1; 0.5 0 0; 0 0.5 0; 1 0 0.5];
figure();
fig = bar(X);
fig.FaceColor = 'flat';
fig.CData(1,:) = [1 0 0];
fig.CData(2,:) = [0 1 0];
fig.CData(3,:) = [1 0 1];
fig.CData(4,:) = [0 0 1];
fig.CData(5,:) = [0.5 0 0.5];
fig.CData(6,:) = [1 0.5 1];
fig.CData(7,:) = [0.5 0 0];
fig.CData(8,:) = [0 0.5 0];
fig.CData(9,:) = [1 0 0.5];
lgd = legend(fig,{'Reaction';'Pressure';'Load';'Separation';'Tanks';'valves';'XV';'TIC';'Hydrogen'},'location','best');
0 Comments
Sign in to comment.